?? include.awk
字號:
# input file should have lines which start with "@incl" followed by# a name of a file to include{ if ((NF == 2) && ($1 == "@incl")) { print " -- included file -- ", $2 while ((getline line < $2) > 0) print line close ($2) printf "\t***\n" } else { print }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -