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


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

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

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


desc
@@


1.3
log
@grave elimination
@
text
@#!/bin/sh
j=$(basename $0)
if [ -z "$1" ];then
  echo "$j: Missing filename arg"
  exit 1
fi
i=$1
shift
j=$(echo $j|cut -c 3-)
[ "$j" = "~" ] || j=.$j
diff $* $i$j $i
@


1.2
log
@Allow for names ending "~"
@
text
@d2 1
a2 1
j=`basename $0`
d9 1
a9 1
j=`echo $j|cut -c 3-`
@


1.1
log
@Initial revision
@
text
@d10 2
a11 1
diff $* $i.$j $i
@
