6f1b523433423622d1ec39ee45a13d0b9be9d4c8
markd
  Thu Mar 24 20:16:17 2011 -0700
removed no longer needed cvs tools, which are mistakenly being run by some stray crontabs
diff --git src/utils/cvsTools/cvsFiles src/utils/cvsTools/cvsFiles
deleted file mode 100755
index dbf1a21..0000000
--- src/utils/cvsTools/cvsFiles
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-usage='cvsFiles [-h] [dir ...]
-Run cvs status and generate list of files under cvs using the current working
-or specified directories.
-
-Options:
-  -h or -help - print this message'
-
-while [[ $1 == -* ]] ; do
-    opt=$1
-    shift
-    case "$opt" in 
-        -h) echo "$usage" > /dev/stderr
-            exit 1 ;;
-        *)  echo "Error: invalid option: $opt" > /dev/stderr
-            echo "$usage" > /dev/stderr
-            exit 1 ;;
-    esac
-done
-
-cvs status "$@" 2>&1 | cvsStatusFilter | awk 'BEGIN{FS="\t"} (NR>1)&&($2!="Locally_Removed"){print $1}'
-if [ "${PIPESTATUS[*]}" != "0 0 0" ] ; then
-    exit 1
-fi