Mit etwas Mühe kann man ein QSH-Script daraus machen:

echo "Text" >MyTextFile;
touch -t YYMMDD MyTextFile;

ls | (
while read FileName;
do
if (test $FileName -ot MyTextFile) then
rm $FileName;
fi;
done;
)

YYMMDD sollte vorher als "Heute" - 7 Tage berechnet werden können.