Added code to remove the '*.fil' files also.

This commit is contained in:
falgout 2011-01-19 23:51:18 +00:00
parent 9f1f2f7fc2
commit 38eac460a3

View File

@ -43,6 +43,7 @@ then
rm -f $testdir/*err*
rm -f $testdir/*out*
rm -f $testdir/*log*
rm -f $testdir/*.fil
done
else
while [ "$*" ]
@ -50,6 +51,7 @@ else
rm -f $1/*err*
rm -f $1/*out*
rm -f $1/*log*
rm -f $1/*.fil
shift
done
fi