📄 sanitize-3rdparty
字号:
#!/bin/sh## Remove third-party code from source files## $Header: /home/srilm/devel/sbin/RCS/sanitize-3rdparty,v 1.1 2004/12/03 02:43:38 stolcke Exp $#egrep -l EXCLUDE_CONTRIB "$@" | \while read filedo echo "sanitizing $file" >&2 mv $file $file.3rdparty sed -e '/EXCLUDE_CONTRIB/,/EXCLUDE_CONTRIB_END/d' \ -e '/INCLUDE_CONTRIB/d' \ $file.3rdparty > $filedone
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -