#!/bin/csh -f
if( $#argv == 0 ) then
	echo "Usage:  renum filename"
	exit 1
else
	awk -f $EPICSTOP/Scrpt/onlyrenum  $1
endif

