-
-
Save QuentinN42/36814765296e551e8b61ceef5d139993 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
for pa in $(find -name "\.git" | sed -e "s/\.git//g"); | |
do | |
( | |
cd $pa; | |
echo ""; | |
echo "=> In $(pwd) :"; | |
git $*; | |
); | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment