home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d7xx
/
d748
/
delitracker.lha
/
DeliTracker
/
Rexx
/
dt_append.rexx
next >
Wrap
OS/2 REXX Batch file
|
1992-10-12
|
208b
|
19 lines
/* DeliTracker - toggles append */
address 'rexx_DT'
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