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