:: This file belongs to the CEP package | Ten plik nale/zy do pakietu CEP :: This package is public domain | Pakiet stanowi dobro powszechne :: For more info see `0CEP_LIC.ENG' | Wi/ecej informacji w ,,0CEP_LIC.POL'' :: =========================================================================== :: E: A decompression program of EPS files compressed with CEP :: :: P: Program do rozpakowywania plik/ow EPS spakowanych za pomoc/a CEP-a :: @echo off if "%2"=="" goto USAGE if "%1"=="%2" goto USAGE if not exist %1 goto USAGE gawk32 -funcep.awk -vTMPSX=tmp.psx -vOUTF=%2 %1 if errorlevel==1 goto DONE SET DOS4G=quiet if exist tmp.psx call gs386.exe -q -dNODISPLAY tmp.psx if exist tmp.psx del tmp.psx echo . goto DONE :: :USAGE echo E: USAGE: echo uncep input_file output_file echo (decompression and decoding method is taken from input file; echo names of input_file and output_file must differ) echo. echo P: WYWO/LANIE: echo uncep plik_wej/sciowy plik_wyj/sciowy echo (metoda dekodowania jest ustalana na postawie pliku wej/sciowego; echo nazwa pliku wyj/sciowego musi by/c r/o/zna od nazwy pliku wej/sciowego) :DONE