sch2ps

来自「The purpose of this project is to make i」· 代码 · 共 32 行

TXT
32
字号
#!/bin/sh# ----------------------------------------------------------------------# sch2ps - Convert gschem schematic to Postscript# ----------------------------------------------------------------------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 + -
显示快捷键?