📄 check.docs
字号:
#!/bin/bashLANG=Ctest -z "$srcdir" && srcdir=.status=0if ! test -f pango-undocumented.txt -a -f pango-unused.txt; then echo At least one of pango-undocumented.txt and pango-unused.txt not found. echo Skipping test. exit 0fistatus=0unused=`cat pango-unused.txt`if test -n "$unused"; then echo Unused documentated symbols: cat pango-unused.txt status=1fiif ! grep '^0 symbols incomplete' pango-undocumented.txt >/dev/null || ! grep '^0 not documented' pango-undocumented.txt >/dev/null; then echo Incomplete or undocumented symbols: cat pango-unused.txt status=1fiexit $status
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -