> I've been using a CVS Client for Win95 for some time with pretty good
> success. Is there a way to use the same client software under DOSEMU?
CVS is normally part of the standard installation of linux. You don't need
to use a DOS program having a native linux application.
>
> I've tried using a Linux CVS client to get files and then using lredir
> to map a path to the files but have encountered the new-line problem (LF
> only versus CR/LF -- Carriage Return/Line Feed).
It is very easy to add the CRLF to a text file in linux. Just create a
script with this line:
awk '{printf ("%s\r\n",$0)}'
Or you can do:
for a in *txt
do
echo converting $a to DOS CR/LF text format...
mv $a /tmp/$a
awk '{printf ("%s\r\n",$0)}' < /tmp/$a >$a
done