Created
September 10, 2019 07:51
-
-
Save Auronmatrix/8365bf05d4184aeae712191ced7a8aba to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
LOOK_FOR='.git' | |
find . -name $LOOK_FOR -print0 | xargs -0 -n1 dirname | sort --unique | while read fname; do | |
( | |
cd $fname | |
git pull | |
) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment