home *** CD-ROM | disk | FTP | other *** search
- /*
- ** ARexx Script to stop the "Start_TeX" script.
- **
- ** 19.08.90 Georg Hessmann
- */
-
- address "GOLDED.1"
-
- OPTIONS RESULTS
-
- IF (SHOW('P', 'Start_TeX')) THEN DO
- 'REQUEST BODY="Really stop ARexx TeX-server ?" BUTTON="Yep|Nope"'
- if (RESULT == "1") THEN ADDRESS 'Start_TeX' 'quit'
- END
- ELSE
- 'REQUEST BODY="No TeX Server to quit"'
-
- EXIT 0
-
-