Linux_inux Find in bulk delete empty files and empty folder scripts

Source: Internet
Author: User
Tags svn

1.{} and there is a space between
2.find. There are also spaces between-name
3.exec is a follow-up command, and the contents of {} represent the files found earlier

How to bulk delete empty files (Files of size equal to 0) under Linux

Find " * " Xargs 1 RM -F

You can also delete a file of the specified size, as long as you modify the corresponding-size parameter, for example:

Find " * " Xargs 1 RM -F

is to delete files of 1k size. (but be careful not to use-size 1k, this gets to occupy space 1k, not file size 1k).

Query out all empty folders

Find -type d-empty

list the files you have searched for Deleting Files

Find " Test.txt "

Delete a searched file in bulk

Find " Shuaige.txt " |xargs RM-RF

Prompt before deletion

Find " Test.txt " rm -rf {};  


Delete the files under all the test folders under the current directory

Find " Test " -type D-| rm -rf {};

Note://delete all the. svn files under the folder

Find ' . SVN ' rm -rf {};

Linux_inux Find in bulk delete empty files and empty folder scripts

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.