sanitize-3rdparty
来自「这是一款很好用的工具包」· 代码 · 共 19 行
TXT
19 行
#!/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 + =
减小字号Ctrl + -
显示快捷键?