Bulk Delete files under Linux

Source: Internet
Author: User

1. In the Linux batch delete multi-level directory under the same format file, can use the Find + EXEC command combination:

For example, in all subdirectories where the old directory is deleted, the file method with the suffix. L is:

Find Old-type f-name "*.L"-exec rm-f {} \;

Description

old: The start directory to be found, search for subdirectories under it

-type F: File type is normal file if the target file you are looking for is a directory, use-type D

-name "*.L": Indicates the file name matches "*.L", double quotation marks must not be less!

rm-f {}: When deleted, do not prompt, {} indicates the file found

PS: space required between {} and \ \

2. Using the Xargs parameter

Find. -name ". _*" | Xargs RM-RF

(* * function under Cygwin *)

Bulk Delete files under Linux

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.