ps2ps.bat
来自「GhostScript的源代码」· Batch 代码 · 共 23 行
BAT
23 行
@echo off
@rem $Id: ps2ps.bat $
@rem "Distill" PostScript.
if "%1"=="" goto usage
if "%2"=="" goto usage
echo -dNODISPLAY -dNOPAUSE -dBATCH >_.at
:cp
if "%3"=="" goto doit
echo %1 >>_.at
shift
goto cp
:doit
rem Watcom C deletes = signs, so use # instead.
gs -q -sDEVICE#pswrite -sOutputFile#%2 @_.at %1
goto end
:usage
echo "Usage: ps2ps ...switches... input.ps output.ps"
:end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?