git: 9front

ref: 0b6f19f98cfc9a62fc4df1661c63c77ffe459f67
dir: /sys/src/cmd/gs/lib/dumphint.bat/

View raw version
@echo off 
@rem $Id: dumphint.bat,v 1.1 2003/05/06 20:50:10 alexcher Exp $
@rem Linearized PDF hint formatting utility.

if %1/==/ goto usage
call gssetgs.bat
echo -q -dNODISPLAY -dSAFER -dDELAYSAFER >_.at
:cp
if %2/==/ goto doit
echo %2 >>_.at
shift
goto cp

:doit
%GSC% -q @_.at -- dumphint.ps %1
if exist _.at erase _.at
goto end

:usage
echo Usage: dumphint input.pdf

:end