@echo off rem DESCRIPTION rem Batch file to run text2pdf on multiple files. rem Make a Windows 95 shortcut to this script and you can drag rem and drop multiple files. rem Change the absolute path to text2pdf.exe as appropriate. rem Copyright (c) Phil Smith, 1996. rem KNOWN PROBLEM rem Subject to limit on length of command line: can often rem drag only 3 or 4 files at a time. :loop shift if "%0"=="" goto end c:\mypath\text2pdf.exe %0 > %0.pdf goto loop :end