includes
来自「A C++ class library for scientific compu」· 代码 · 共 11 行
TXT
11 行
#!/bin/bashif test -z $1; then echo Use: includes [usual g++ command line] echo e.g. includes foo.cpp -I /usr/src/Blitz++ echo This shows bytes included from all header files. exit 1fiwc -c `g++ -E -c $* | grep "^#" | grep -v pragma | awk '{ print $3 }' | sort | uniq | tr -s "\"" " "` | sort -nr | more
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?