#! /bin/csh -f

if ($#argv != 1) then
    echo "cleaning temporary files failed"
    exit 1
endif

pushd $1
rm -rf pandora_autogenerated_temp_file*
popd

exit 0
    
