Skip to content

Instantly share code, notes, and snippets.

@drpadre
Last active June 23, 2021 10:28
Show Gist options
  • Save drpadre/fa4d3f57447843e2f70c9665544f423a to your computer and use it in GitHub Desktop.
Save drpadre/fa4d3f57447843e2f70c9665544f423a to your computer and use it in GitHub Desktop.
Удаление 1кк+ файлов без падения системы

Удаление 1кк+ файлов без падения системы

find /var/www/*/data/www/*/files/.cache/ -type f -mtime -3 -name '*gz' | xargs -n1 nice -n 19 ionice -c3 rm -fv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment