How do I make all files executable that have the file extension .cgi?

241 Views Asked by At

My server downloads its files from git hub to make sure they are up to date and make it easier for me to edit the files. I have set up a cron job that will update the files every few minutes.

However I am having a problem as the CGI files that are being added to the repository do not have the right permissions so they are unable to be executed. I know that

sudo chmod +x *.cgi

Will make the files executable, but the files lie across multiple directories. Is there a way that I can do this in one command. Something along the lines of:

sudo chmod +x */*.cgi
1

There are 1 best solutions below

0
On BEST ANSWER

Try to combine find with chmod:

sudo find /path/to/files -name "*.cgi" -exec chmod +x {} \;