?? ccgs
字號:
#!/bin/sh
# $Id: ccgs $
# Pre-process ANSI C files with ansi2knr before compiling.
# Usage: ccgs "cc switches..." ...switches... -c inputfile ... -o outputfile
CFILE=""
OFILE=""
CMD=$1
while [ $# -gt 1 ]
do
shift
case "$1" in
-c) CFILE=$2; shift;;
-o) OFILE=$2; shift;;
*) CMD="$CMD $1";;
esac
done
./ansi2knr $CFILE _temp_$$.c
$CMD -c _temp_$$.c -o $OFILE
rm -f _temp_$$.c
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -