home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 4
/
FreshFish_May-June1994.bin
/
useful
/
dist
/
text
/
tex
/
pastex
/
macros
/
nice20.zoo
/
dtou
next >
Wrap
Text File
|
1990-10-09
|
180b
|
12 lines
#! /bin/csh
# DOS_TO_UNIX text file conversion
# changes $0A/$0D eol-marker to $0D
foreach i ($*)
echo "Processing $i"
ex - $i <<":END:"
g/$/s///
w!
q
":END:"
end