SyntaxFix
Write A Post
Hire A Developer
Questions
Adding executable permissions, recursively, to all files (not folders) within the current folder with sh extension:
sh
find . -name '*.sh' -type f | xargs chmod +x
* Notice the pipe (|)
|