#!/bin/sh
#
# This script is invoked by FAS to delete list files.
# First argument is the list file directory, second the name of the file
# to be deleted.
#

if [ -f $1/$2 ]; then
    rm $1/$2
else 
    echo "<p><b>Error</b> - File not found."

fi