home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / PRIORITY.LZH / TESTPRI.CMD < prev   
OS/2 REXX Batch file  |  1992-07-11  |  251b  |  14 lines

  1. @Echo off
  2.  
  3. priority 1 0 test arg1 arg2
  4. priority 3 31 test argx argy
  5.  
  6. rem this last is executed only if we get something on the command line...
  7.  
  8. if "%1" == "" goto End
  9. if "%2" == "" goto End
  10.  
  11. priority %1 %2 test %3 %4 %5 %6 %7 %8 %9
  12.  
  13. :End
  14.