Converting DOS text files

Mark A. Emanuele emanuele at overlf.UUCP
Wed Oct 24 01:31:05 AEST 1990


In article <232 at csinc.UUCP>, rpeglar at csinc.UUCP (Rob Peglar) writes:
> 
> I give up.
> 
> doscp -m a:file.ext dir/file



just try doing doscp -m a:*.* dir    and see what happens.
doscp can't expand wildcards on the dos drive.

what you have to do is this
for i in `dosls a:`
do
	doscp -m a:${i} dir
done
-- 
Mark A. Emanuele
V.P. Engineering  Overleaf, Inc.
500 Route 10 Ledgewood, NJ 07852-9639         attmail!overlf!emanuele
(201) 927-3785 Voice   (201) 927-5781 fax     emanuele at overlf.UUCP



More information about the Comp.unix.sysv386 mailing list