home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / vrac / nfbtr745.zip / MAKEDOC.BAT < prev    next >
DOS Batch File  |  1996-03-28  |  588b  |  19 lines

  1. @echo off
  2. echo This batch file uses nfbtrans.fmt to create nfbtrans.doc formatted
  3. echo with a line length of 80 columns and 56 lines per page.
  4. pause
  5. if exist nfbtrans.fmt goto got_file
  6. echo nfbtrans.fmt not found...
  7. goto exit
  8. :got_file
  9.  
  10. rem Create nfbprint.fmt identical to nfbtrans.fmt except for the line of
  11. rem formatting commands at the beginning.
  12.  
  13. echo ~0 ~-pw=80 ~-ls=99 ~-pl=56 ~-if=12 ~-fc=. ~o5 ~p- ~-ip=0 ~-oc=1 >temp.$$$
  14. copy temp.$$$ + nfbtrans.fmt nfbprint.fmt >nul
  15. del temp.$$$ >nul
  16. nfbtrans ob=oc=15 nfbprint.fmt >nfbtrans.doc
  17. del nfbprint.fmt >nul
  18. :exit
  19.