chk.tags

来自「mysql-5.0.22.tar.gz源码包」· TAGS 代码 · 共 42 行

TAGS
42
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?