head	1.4;
access;
symbols;
locks; strict;
comment	@# @;


1.4
date	2011.11.21.10.01.07;	author dunc;	state Exp;
branches;
next	1.3;

1.3
date	98.04.08.01.40.34;	author dunc;	state Exp;
branches;
next	1.2;

1.2
date	98.04.08.01.38.07;	author dunc;	state Exp;
branches;
next	1.1;

1.1
date	97.12.06.03.24.07;	author dunc;	state Exp;
branches;
next	;


desc
@Check in any working copies that differ from last checked in version
@


1.4
log
@grave elimination
@
text
@#!/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
@


1.3
log
@Really do ci again; $1 may be name of descr file else use /dev/tty
@
text
@d13 1
a13 1
  j=`basename $i ,v`
@


1.2
log
@Dummy that only does rcsdiff's
@
text
@d2 1
a2 1
# Check in any working copies that differ from last checked in version
d7 5
d14 1
a14 1
  rcsdiff $j || ci -u $j
@


1.1
log
@Initial revision
@
text
@d2 1
d9 1
a9 1
  ci -u $j < /WS3/dev3/drcopy/IS
@
