home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 036 / emxfix02.zip / emx / src / lib / sub.cmd
OS/2 REXX Batch file  |  1994-12-07  |  675b  |  43 lines

  1. /* sub.cmd */
  2.  
  3. parse arg prog
  4. '@echo off'
  5. call sub1 'app'
  6. call sub1 'cdll'
  7. call sub1 'conv'
  8. call sub1 'ctype'
  9. call sub1 'dllnrt'
  10. call sub1 'dllrt'
  11. call sub1 'dllso'
  12. call sub1 'emx'
  13. call sub1 'emxload'
  14. call sub1 'gcc'
  15. call sub1 'graph'
  16. call sub1 'io'
  17. call sub1 'locale'
  18. call sub1 'malloc'
  19. call sub1 'math'
  20. call sub1 'mbyte'
  21. call sub1 'misc'
  22. call sub1 'moddef'
  23. call sub1 'nls'
  24. call sub1 'omflib'
  25. call sub1 'os2'
  26. call sub1 'process'
  27. call sub1 'socket'
  28. call sub1 'startup'
  29. call sub1 'str'
  30. call sub1 'sys'
  31. call sub1 'termios'
  32. call sub1 'time'
  33. call sub1 'video'
  34. exit
  35.  
  36. sub1:
  37.   parse arg dir
  38.   'cd '||dir
  39.   say dir
  40.   prog
  41.   'cd ..'
  42.   return
  43.