home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if x%1 == xe goto DoEpson
- if x%1 == xE goto DoEpson
- if x%1 == xp goto DoPostScript
- if x%1 == xP goto DoPostScript
-
- echo "Usage: test-pr [e] [p]"
- goto exit
-
- :DoEpson
- @echo on
- eedepson -1 talkbell.eed
- eedepson -1 test-all.eed
- eedepson -1 82720-2.eed
- eedepson -1 82720-1.eed
- eedepson -1 layout.eed
- eedepson -1 text7.eed
- goto exit
-
- :DoPostScript
- @echo on
- eed-ps talkbell.eed > f:talkbell.ps
- eed-ps test-all.eed > f:test-all.ps
- eed-ps 82720-2.eed > f:82720-2.ps
- eed-ps 82720-1.eed > f:82720-1.ps
- eed-ps layout.eed > f:layout.ps
- eed-ps text7.eed > f:text7.ps
- goto exit
-
- :exit