📄 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 + -