home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
prgramer
/
unix
/
emx
/
bin
/
makebin1.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
1992-08-11
|
201b
|
12 lines
@echo off
if "%1"=="" goto usage
if not "%2"=="" goto start
:usage
echo Usage: makebin
goto end
:start
copy %1 \emx\new\%2
emxbind -bsq \emx\new\%2 %3 %4 %5 %6 %7 %8 %9
del \emx\new\%2
:end