Skip to content

Instantly share code, notes, and snippets.

@CodeByAidan
Created March 10, 2024 19:28
Show Gist options
  • Save CodeByAidan/2bbc7966046dcc0339a3d32dabf1ea94 to your computer and use it in GitHub Desktop.
Save CodeByAidan/2bbc7966046dcc0339a3d32dabf1ea94 to your computer and use it in GitHub Desktop.
Quickly make all shell script files executable within a directory. With this gist, you can easily share the command to make all shell script files executable within a specific directory. It's a handy utility for enhancing productivity and managing shell scripts effectively.
find /path/to/your/directory -type f -name '*.sh' -exec chmod +x {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment