Удалить файлы старше NNN дней
NNN - количество дней
#
find
/
backup
-type
f
-mtime
+NNN
-exec
rm
{
}
\;
2
>/
dev
/
null
bash
,
backup
,
script