source: CMT/v1r12p20020606/mgr/cmt_wintounix.sh

Last change on this file was 1, checked in by arnault, 20 years ago

Import all tags

File size: 125 bytes
Line 
1#!/bin/sh -f
2
3for f in $* ; do
4  name=`basename $f`
5  echo "Convert $f" 1>&2
6  tr '\r' ' ' <$f >t$$; mv t$$ $f
7done
8
Note: See TracBrowser for help on using the repository browser.