home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / perl4036.zip / os2 / dump.cmd < prev    next >
OS/2 REXX Batch file  |  1993-02-26  |  269b  |  16 lines

  1. @echo off
  2.  
  3. if exist %1.pl goto work
  4. echo Usage: %0 name
  5. echo where name is the base name of a perl file to turn into a .exe file
  6. goto exit
  7.  
  8. :work
  9. perl -u %1.pl
  10. emxbind -q -x perl.exe %1
  11. emxbind -q -cperldump %1
  12. del perldump %1
  13. echo %1.exe created
  14.  
  15. :exit
  16.