home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ACS 1997 #4
/
amigaacscoverdisc1997-041997.iso
/
w_acs_6'97
/
delitracker_ii
/
files
/
arexx.lzx
/
Arexx
/
dt_quick.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2016-02-11
|
222b
|
19 lines
/* DeliTracker - toggles quickstart */
address 'DELITRACKER'
options results
status G qst
if result == "no" then do
quick yes
say "Quickstart is now on..."
end
else do
quick no
say "Quickstart is now off..."
end