home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / pmcmd.zip / LD.CMD < prev    next >
OS/2 REXX Batch file  |  1994-09-06  |  517b  |  42 lines

  1. /*
  2.     This file is a part of the Lignum PMCMD product.
  3.     All rights reserved.
  4.  
  5.     You can use this as the basis to make new files if required.
  6.     This is used to fix an unspecified bug in CMD.EXE or 
  7.     Lignum PMCMD.
  8.  
  9.     Copyright 1993 and 1994, Lignum Ltd.
  10. */
  11.  
  12.  
  13. CALL RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs"
  14. CALL SysLoadFuncs
  15.  
  16. i = 1
  17.  
  18. command = ''
  19.  
  20. DO WHILE i < 20
  21.     c1 = ARG(i)
  22.     command = command c1
  23.     i = i + 1
  24. END
  25.  
  26. command = 'DIR ' command 
  27.  
  28. '@ECHO OFF'
  29. command
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.