📄 chk.tags
字号:
#!/bin/sh -## $Id: chk.tags,v 1.10 2001/10/12 17:55:36 bostic Exp $## Check to make sure we don't need any more symbolic links to tags files.d=../..# Test must be run from the top-level directory, not from a test directory.[ -f $d/LICENSE ] || { echo 'FAIL: cannot find source distribution directory.' exit 1}t1=__1t2=__2(cd $d && ls -F | egrep / | sort | sed -e 's/\///' \ -e '/^CVS$/d' \ -e '/^build_vxworks$/d' \ -e '/^build_win32$/d' \ -e '/^docs$/d' \ -e '/^docs_book$/d' \ -e '/^docs_src$/d' \ -e '/^java$/d' \ -e '/^perl$/d' \ -e '/^test$/d' \ -e '/^test_cxx$/d' \ -e '/^test_purify$/d' \ -e '/^test_thread$/d' \ -e '/^test_vxworks$/d') > $t1(cd $d && ls */tags | sed 's/\/tags$//' | sort) > $t2if diff $t1 $t2 > /dev/null; then exit 0else echo "<<< source tree >>> tags files" diff $t1 $t2 exit 1fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -