Created
October 3, 2016 14:04
-
-
Save jonnymaceachern/f57011b3936e426809a8218c96db7492 to your computer and use it in GitHub Desktop.
git-stats-importer.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for D in ./*; do | |
if [ -d "$D" ]; then | |
cd "$D" | |
git-stats-importer -e [email protected] | |
cd .. | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment