home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ANews 3
/
AnewsCD3.iso
/
Script
/
Autoclose.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-10-11
|
318b
|
22 lines
/* Ferme tout si une erreur se produit */
options results
address rexx
do forever
call delay(200)
if ~show('p', 'ASERV') then do
if show('p', 'ANEWS') then do
address ANEWS quit
end
exit
end
if ~show('p', 'ANEWS') then do
if show('p', 'ASERV') then do
address ASERV QUIT
end
exit
end
end
exit