Skip to content

Instantly share code, notes, and snippets.

@organizm
Last active July 5, 2016 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save organizm/8fc33c10f3f13d4dc049dded26b6fa26 to your computer and use it in GitHub Desktop.
Save organizm/8fc33c10f3f13d4dc049dded26b6fa26 to your computer and use it in GitHub Desktop.
Удалить из папки ооочень большое колическтво файлов, когда ln ls не может даже отобразить. #linux
postdrop: warning: mail_queue_enter: create file maildrop/327454.25698: No space left on device
find dir_name/ -type f -name "*" -exec rm -f {} \; - #wery slow for many files
find session/ -type f -delete; #will perform better because it doesn't have to spawn an external process for each and every matched file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment