home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fonts 1
/
freshfonts1.bin
/
programs
/
amiga
/
tpp
/
tex
/
nice20.lha
/
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