home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Sound / Player / DELIT218.LHA / Files / arexx.lzx / Arexx / dt_append.rexx next >
Encoding:
OS/2 REXX Batch file  |  1994-04-15  |  212 b   |  19 lines

  1. /* DeliTracker - toggles append */
  2.  
  3. address 'DELITRACKER'
  4.  
  5. options results
  6.  
  7.  
  8. status G app
  9.  
  10. if result == "no" then do
  11.     Append yes
  12.     say "Append is now on..."
  13. end
  14. else do
  15.     Append no
  16.     say "Append is now off..."
  17. end
  18.  
  19.