#! /bin/sh -
#script to clean work directory selectively
file=$1
sel=$2
if [ "$sel" = "" ]
   then
   sel=nothing
fi           
rm -f $file$sel 2>/dev/null 
exit

