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


1.3
date	2011.11.22.10.25.44;	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
j=$(echo $j|cut -c 3-)
[ "$j" = "~" ] || j=.$j
rm -i $1$j
@


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


1.1
log
@Initial revision
@
text
@d8 2
a9 1
rm -i $1.$j
@
