home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / MAKEBIN1.CMD < prev    next >
OS/2 REXX Batch file  |  1992-08-12  |  201b  |  12 lines

  1. @echo off
  2. if "%1"=="" goto usage
  3. if not "%2"=="" goto start
  4. :usage
  5. echo Usage: makebin
  6. goto end
  7. :start
  8. copy %1 \emx\new\%2
  9. emxbind -bsq \emx\new\%2 %3 %4 %5 %6 %7 %8 %9
  10. del \emx\new\%2
  11. :end
  12.