How do I change file permission to a certain file pattern to sub folders of my current directory?

断了今生、忘了曾经 提交于 2019-12-29 11:35:09

问题


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


回答1:


use find:

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



回答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.




回答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.



来源:https://stackoverflow.com/questions/4249878/how-do-i-change-file-permission-to-a-certain-file-pattern-to-sub-folders-of-my-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!