Skip to content

Instantly share code, notes, and snippets.

@mgurov
Created January 13, 2014 10:33
Show Gist options
  • Save mgurov/8397930 to your computer and use it in GitHub Desktop.
Save mgurov/8397930 to your computer and use it in GitHub Desktop.
for all first-level subdirectories execute e.g. `firs git svn fetch`
#!/bin/bash
for dir in */; do
echo $dir
cd $dir
($@)
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment