home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 4
/
FreshFish_May-June1994.bin
/
useful
/
dist
/
text
/
tex
/
pastex
/
rexx
/
ttx
/
quit_tex.ttx
< prev
next >
Wrap
Text File
|
1991-11-14
|
360b
|
17 lines
/*
** ARexx Script to stop the "Start_TeX" script.
**
** 19.08.90 Georg Hessmann
*/
TRACE RESULTS
OPTIONS RESULTS
IF (SHOW('P', 'Start_TeX')) THEN DO
RequestBool TITLE '"Quit TeX"' PROMPT '"Really stop ARexx TeX-server ?"'
if (RESULT == "YES") THEN ADDRESS 'Start_TeX' 'quit'
END
ELSE
RequestBool TITLE '"???"' PROMPT '"No TeX-server to quit!"'
EXIT 0