#!/bin/sh

# SRC_DIR and CHECK_TMP_FILE passed in from turnall

echo "Searching for files in RCS"
echo "There should not be any files found. If there are, they must be removed."
find ${SRC_DIR}/src -type f -print | fgrep -v RCS | tee ${CHECK_TMP_FILE}
find ${SRC_DIR}/SRMTOOLS -type f -print | fgrep -v RCS | fgrep -v toolsupdate |
     tee -a ${CHECK_TMP_FILE}
echo "Finished searching for files in RCS"
