#!/bin/sh
# rcsrm -- remove a file and the corresponding RCS file
#
# AUTHOR: Gary T. Leavens

for f
do
	rm $f && rm -f RCS/${f},v
done
