if test -f ~/trash/*
then
{

echo EMPTY TRASH recovery of files in trash will be impossible are you sure y/n?
read something
if [ "$something" = "y" ]
then
{
rm ~/trash/*
echo TRASH EMPTIED
}
else
echo no action was taken, files are still in trash
fi

}
else
echo trash is empty
fi

