home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / tech / fonefltr / readme.bat < prev   
DOS Batch File  |  1988-10-24  |  1KB  |  34 lines

  1. ECHO OFF
  2. CLS
  3. TYPE FONEFLTR.LST|MORE
  4. ECHO 
  5. ECHO This will send the following files to your printer:
  6. ECHO 
  7. ECHO     FONEFLTR.TXT   text file describing how to make an R.F. filter.
  8. ECHO     FONEFLTR.ASC   ASCII formatted schematic diagram of the filter.
  9. ECHO 
  10. ECHO If you do not have a printer, or do not wish to print the files, press
  11. ECHO "CTRL" and "C" simultaneously to terminate this file.
  12. PAUSE
  13. REM now copy files to the printer
  14. REM but first, make sure that the files are available:
  15. IF NOT EXIST FONEFLTR.ASC GOTO ERROR1
  16. IF NOT EXIST FONEFLTR.TXT GOTO ERROR2
  17. COPY FONEFLTR.ASC PRN
  18. COPY FONEFLTR.TXT PRN
  19. ECHO Done.
  20. ECHO 
  21. ECHO Provided as a coutesty of "The PC-GURU" BBS: 617-783-5154 2400/1200/300 N-8-1
  22. GOTO END
  23. : ERROR1
  24. CLS
  25. ECHO I cannot find FONEFLTR.ASC! Please locate the file in the default directory, 
  26. ECHO or un-archive the file again.
  27. GOTO END
  28. : ERROR2
  29. CLS
  30. ECHO I cannot find FONEFLTR.TXT! Please locate the file in the default directory, 
  31. ECHO or un-archive the file again.
  32. GOTO END
  33. : END
  34.