Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_tlsv12/sys/src/cmd/gs/lib/dumphint.bat – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
@echo off 
2
@rem $Id: dumphint.bat,v 1.1 2003/05/06 20:50:10 alexcher Exp $
3
@rem Linearized PDF hint formatting utility.
4
 
5
if %1/==/ goto usage
6
call gssetgs.bat
7
echo -q -dNODISPLAY -dSAFER -dDELAYSAFER >_.at
8
:cp
9
if %2/==/ goto doit
10
echo %2 >>_.at
11
shift
12
goto cp
13
 
14
:doit
15
%GSC% -q @_.at -- dumphint.ps %1
16
if exist _.at erase _.at
17
goto end
18
 
19
:usage
20
echo Usage: dumphint input.pdf
21
 
22
:end