#
# I use this UNIX script to fix line separators after I copy
# text files from a PC to a UNIX system.
#
sed "s/
//" < $1 > temp$$
/bin/mv temp$$ $1
