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_append.rexx
next >
Wrap
OS/2 REXX Batch file
|
2015-10-11
|
212b
|
19 lines
/* DeliTracker - toggles append */
address 'DELITRACKER'
options results
status G app
if result == "no" then do
Append yes
say "Append is now on..."
end
else do
Append no
say "Append is now off..."
end