Skip to content

Instantly share code, notes, and snippets.

@simianarmy
Last active August 29, 2015 14:25
Show Gist options
  • Save simianarmy/ff4eb7a208969172f8c6 to your computer and use it in GitHub Desktop.
Save simianarmy/ff4eb7a208969172f8c6 to your computer and use it in GitHub Desktop.
Loop semi-recursively through directories for batch shell operations
for d in `ls`; do pushd $d; for l in `ls`; do YOUR_COMMANDS_HERE; done; popd; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment