TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
In my last message I forgot to include the switches in batch file.
Here is the corrected version.
@echo off
dir c:\*.bmp /B /S > c:\bmp.lst
dir c:\*.jpg /B /S > c:\jpg.lst
dir c:\*.gif /B /S > c:\gif.lst
dir c:\*.ico /B /S > c:\ico.lst
dir c:\*.wmf /B /S > c:\wmf.lst
>copy c:\bmp.lst + c:\jpg.lst + c:\gif.lst + c:\ico.lst + c:\wmf.lst
Combined.lst
Note also that the last line of the batch file may have been broken into
two parts by the list server. "Combined.lst" should appear at the end
of the line that contains "copy . . .
"