for FILE in "$@"; do
- echo
-
if [ ! -e "${FILE}" ] ; then
+ echo
echo "File '${FILE}' doesn't exists." >&2
continue
fi
if [ ! -f "${FILE}" ] ; then
+ echo
echo "File '${FILE}' isn't a normal file." >&2
continue
fi
case "${FILE}" in
*,v)
- echo "File '${FILE}' is a RCS repository." >&2
+ #echo "File '${FILE}' is a RCS repository." >&2
continue
;;
esac
rcsdiff -q "${FILE}" >/dev/null
RES="$?"
if [ "${RES}" = "0" ] ; then
+ echo
echo "File '${FILE}' wasn't changed." >&2
continue
fi
fi
+ echo
echo "Checking in '${FILE}' ..."
PERM=`stat -c "%a" "${FILE}"`
echo " rcs -q -l \"${FILE}\""