?? zap_cpp.awk
字號:
# this will remove (comment out) all preprocessor traces from # cpp produced files:# run this awk program as follows# awk -f zap_cpp.awk <file># end redirect output where you want it toNF > 0 { if ($1 ~ /^#/) print "/*", $0, "*/" else print}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -