home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / EEDRW23S.ZIP / TEST-PR.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-12-17  |  608 b   |  30 lines

  1. @echo off
  2. if x%1 == xe goto DoEpson
  3. if x%1 == xE goto DoEpson
  4. if x%1 == xp goto DoPostScript
  5. if x%1 == xP goto DoPostScript
  6.  
  7. echo "Usage: test-pr [e] [p]"
  8. goto exit
  9.  
  10. :DoEpson
  11. @echo on
  12. eedepson -1 talkbell.eed
  13. eedepson -1 test-all.eed
  14. eedepson -1 82720-2.eed
  15. eedepson -1 82720-1.eed
  16. eedepson -1 layout.eed
  17. eedepson -1 text7.eed
  18. goto exit
  19.  
  20. :DoPostScript
  21. @echo on
  22. eed-ps talkbell.eed > f:talkbell.ps
  23. eed-ps test-all.eed > f:test-all.ps
  24. eed-ps 82720-2.eed > f:82720-2.ps
  25. eed-ps 82720-1.eed > f:82720-1.ps
  26. eed-ps layout.eed > f:layout.ps
  27. eed-ps text7.eed > f:text7.ps
  28. goto exit
  29.  
  30. :exit