Last active
July 5, 2016 10:20
-
-
Save organizm/8fc33c10f3f13d4dc049dded26b6fa26 to your computer and use it in GitHub Desktop.
Удалить из папки ооочень большое колическтво файлов, когда ln ls не может даже отобразить. #linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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