home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Programmierung
/
SOURCE.mdf
/
programm
/
msdos
/
c
/
djgpp
/
bin
/
aout2exe.bat
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1991-04-05
|
256 b
|
15 lines
@echo off
if not exist stub.exe goto errorns
if not exist %1 goto errornf
copy /b stub.exe+%1 %1.exe
del %1
goto end
:errornf
echo Can't find file %1
goto end
:errorns
echo This batch file must be run in the same directory as STUB.EXE
:end