home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- if "%1" == "" goto ERROR
-
- copy /b %1 BIN\test.prc
- cd BIN
- pack_prc.exe
- del test.prc
- move test_packed.prc ..\!%1
- cd..
-
-
- goto DONE
-
- :ERROR
- echo ----------------------------------------------------
- echo ==== Supported now is Windows 95/98 only. ====
- echo USE: pack.BAT some_name.PRC
- echo Then a file will be created with "!" prefix in name.
- echo ----------------------------------------------------
-
- :DONE