summaryrefslogtreecommitdiff
path: root/sys/src/cmd/gs/lib/dumphint.bat
blob: f15ee3075e92e649753352ae91b8c54fd909915f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@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