sch2ps

来自「This is a software implementation of the」· 代码 · 共 37 行

TXT
37
字号
#!/bin/sh# ======================================================================# sch2ps - Convert gschem schematic to Postscript## Copyright 2006-2008 Dick Streefland## This is free software, licensed under the terms of the GNU General# Public License as published by the Free Software Foundation.# ======================================================================tmp=/tmp/tmp$$.scmtrap "rm -f $tmp gschem.log" 0 1 2 3 15cat <<EOF > $tmp; Script to generate a Postscript file.; Usage: gschem -q -s <script> -o <file>.ps <file>.sch(output-orientation "portrait")(output-type "limits")(output-text "ps")(gschem-use-rc-values)(gschem-print "/dev/null")(gschem-exit)EOFfor	ido	case	"$i" in	*.sch)		ps="${i%.sch}.ps"		gschem -q -s $tmp -o "$ps" "$i"		;;	*)		echo "Error: $i is not a schematic file (*.sch)"		exit 1	esacdone

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?