home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo This batch will create a small README file, using FCOM,
- echo and the supplied sample text files, then will type it to
- echo the screen for you to read. Use the sample files to test
- echo FCOM before trying it on your files.
- echo:
- echo When you are asked if it should append formfeeds....
- echo Press (N) for No, or (Y) for yes, if you want three pages.
- echo If you want to also print out the Readme...Answer Y to Print?
- echo if you do, the file will be printed before typed to the screen.
- echo:
- echo Press any key to begin..................
- pause>nul
- fcom readme file1 file2 file3
- cls
- type readme
-
-
-