#!/bin/csh -f
# Removes most recently created N files in the directory
#
# Usage: rmrec N
#
# Created: 2006/04/18 by Maitra
if ($#argv != 1) then
 echo "Usage: rmrec N , where N is number of most recent files to be removed."
else
 rm -i `ls -t | head -$1`
endif 
