ll $HOME/.purgefiles
echo
echo "Remove all files from $HOME/.purgefiles? \c"
read a
if [ "$a" = y ] ; then
   rm $HOME/.purgefiles/*
fi
