chk.tags
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh -
  2. #
  3. # $Id: chk.tags,v 1.5 2000/12/22 15:35:32 bostic Exp $
  4. #
  5. # Check to make sure we don't need any more symbolic links to tags files.
  6. # Run from the top-level directory.
  7. [ -f db_config.h ] && cd ..
  8. t1=/tmp/__1
  9. t2=/tmp/__2
  10. (ls -F | egrep / | sort |
  11.     sed -e 's////' 
  12. -e '/^CVS$/d' 
  13. -e '/^build_vxworks$/d' 
  14. -e '/^build_win32$/d' 
  15. -e '/^docs$/d' 
  16. -e '/^docs.text$/d' 
  17. -e '/^docs_src$/d' 
  18. -e '/^docs_text$/d' 
  19. -e '/^java$/d' 
  20. -e '/^perl.BerkeleyDB$/d' 
  21. -e '/^perl.DB_File$/d' 
  22. -e '/^test$/d' 
  23. -e '/^test_purify$/d' 
  24. -e '/^test_thread$/d' 
  25. -e '/^test_vxworks$/d') > ${t1}
  26. (ls */tags | sed 's//tags$//' | sort) > ${t2}
  27. if diff ${t1} ${t2} > /dev/null; then
  28. :
  29. else
  30. echo "<<< source tree"
  31. echo ">>> tags files"
  32. diff ${t1} ${t2}
  33. fi
  34. rm -f ${t1} ${t2}