How to change permissions to certain file pattern/extension?

35,853

Solution 1

use find:

find . -name "*.sh" -exec chmod +x {} \;

Solution 2

Try using the glorious combination of find with xargs.

find . -iname \*.sh -print0 | xargs -r0 chmod +x

The . is the directory to start in, in this case the working directory.

Solution 3

With modern versions of find, you get the benefits of an xargs approach that avoids multiple calls to the command (chmod). The command is only slightly different.

find . -name "*.sh" -exec chmod +x {} +

Snip from find docs on Arch 2015.09.01 (emphasis added by me):

-exec command {} +

This variant of the -exec action runs the specified command on the selected files, but the command line is built by appending each selected file name at the end; the total number of invocations of the command will be much less than the number of matched files. The command line is built in much the same way that xargs builds its command lines. Only one instance of {} is allowed within the command. The command is executed in the starting directory.

Share:
35,853
jiqe
Author by

jiqe

Programmer of highly critical web application which involves sophisticated analysis, optimization and efficiency in every area possible to obtain the maximum throughput of the entirety.

Updated on July 09, 2022

Comments

  • jiqe
    jiqe almost 2 years

    Using chmod, I do chmod +x *.sh in the current directory but what if I want to change all files including files within subfolders that has an sh file extension?.

    chmod +x -R * will work but I need something more like chmod +x -R *.sh

  • Orbling
    Orbling over 13 years
    Or you can use -exec in the simple case, as in ennuikiller's example. xargs has slightly more power for more complicated uses.
  • jiqe
    jiqe over 13 years
    the command line is hard to memorize or remember, I have to come and visit this page often times to see the syntax. Do you have a sort of way to remember this command?
  • Nathan
    Nathan about 10 years
    I can't remember a lot of the commands. So, I build scripts that accept parameters.
  • Nathan
    Nathan about 10 years
    This is more efficient than find ... -exec ... See en.wikipedia.org/wiki/Xargs
  • chappjc
    chappjc over 8 years
    @Nathan Thanks for pointing out this important distinction. Reading about this, I discovered a newish find syntax that gets the best of both worlds (see my answer for details).
  • Dan Nissenbaum
    Dan Nissenbaum over 6 years
    For those confused about what the command is actually doing, see chappjc's answer, below, for a hint, at least.