Execute scripts/Programs recursively under the Linux folder

Source: Internet
Author: User

Tagged with:. CPP blog Linux Batch CPP div method dos GPO

In Linux, if you need to use a script/program to execute all eligible files under a folder, you can do the following:

The first is the Find command, using Find to find out which files/folders are eligible for execution

# # only regular files are listed find./-type F # # only list folders find./-type d## list suffix cpp files Find-name *.cpp

Batch processing of all files found

Find./-type f-exec chmod 644 {} \; # the following \; required, indicates output by line find./-type d-exec chmod 755 {} \; # {} indicates found file path find./-type f-exec./dos2unix {} \ # Execute Dos2unix script for all files

Execute scripts/Programs recursively under the Linux folder

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.