chk.tags

来自「linux 下的源代码分析阅读器 red hat公司新版」· TAGS 代码 · 共 49 行

TAGS
49
字号
#!/bin/sh -## $Id: chk.tags,v 12.6 2007/07/06 18:44:33 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_brew$/d' \	-e '/^build_s60$/d' \	-e '/^build_vxworks$/d' \	-e '/^build_wince$/d' \	-e '/^build_windows$/d' \	-e '/^docs$/d' \	-e '/^docs_book$/d' \	-e '/^docs_src$/d' \	-e '/^examples_java$/d' \	-e '/^java$/d' \	-e '/^mod_db4$/d' \	-e '/^perl$/d' \	-e '/^php_db4$/d' \	-e '/^test$/d' \	-e '/^test_cxx$/d' \	-e '/^test_micro$/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 + -
显示快捷键?