#!/bin/sh
# Check in all working copies whether they differ from checked in version or not
if [ ! -d RCS ];then
  echo no RCS directory here
  exit 1
fi
if [ ! "$1" = "" ];then
  k=$1
else
  k=/dev/tty
fi
for i in RCS/*;do
  j=$(basename $i ,v)
  if [ -f $j ];then ci -u $j<$k;fi
done
