How to recursively chmod perl scripts only

Recursive chmod all *.sh files within the current directory

This is when the dadgum hosting provider migrates your site without fixing the executables.
Terminal – Recursive chmod all *.pl files within the current directory
find ./ -name “*.pl” -exec chmod +x {} \;

Leave a Reply

Your email address will not be published. Required fields are marked *