home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / clear11e.zip / destroy.cmd < prev    next >
OS/2 REXX Batch file  |  2000-02-01  |  230b  |  10 lines

  1. /*  rexx-program
  2.     Author: Martin Vieregg, Germany, Jan 2000    */
  3.  
  4. Call RxFuncAdd 'SysLoadFuncs','RexxUtil','SysLoadFuncs'
  5. Call SysLoadFuncs
  6.  
  7. arg Filename
  8. if SysDestroyObject(Filename) then say "OK"
  9. else say "failed"
  10.