?? sch2ps
字號:
#!/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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -