home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / djgpp / bin / aout2exe.bat next >
Encoding:
DOS Batch File  |  1991-04-05  |  256 b   |  15 lines

  1. @echo off
  2. if not exist stub.exe goto errorns
  3. if not exist %1 goto errornf
  4. copy /b stub.exe+%1 %1.exe
  5. del %1
  6. goto end
  7.  
  8. :errornf
  9. echo Can't find file %1
  10. goto end
  11.  
  12. :errorns
  13. echo This batch file must be run in the same directory as STUB.EXE
  14. :end
  15.