Skip to content

Instantly share code, notes, and snippets.

@AlekseyArh
Last active January 25, 2024 14:43
Show Gist options
  • Save AlekseyArh/f35373e1856d3e96ac3635276d5d5b31 to your computer and use it in GitHub Desktop.
Save AlekseyArh/f35373e1856d3e96ac3635276d5d5b31 to your computer and use it in GitHub Desktop.
Удалить файлы старше 5 дней | Удалить файлы старше 30 минут
sudo find /mnt/files/ -type f -mtime +5 -delete
sudo find /mnt/files/ -type f -mmin +30 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment