Skip to content

Instantly share code, notes, and snippets.

@Auronmatrix
Created September 10, 2019 07:51
Show Gist options
  • Save Auronmatrix/8365bf05d4184aeae712191ced7a8aba to your computer and use it in GitHub Desktop.
Save Auronmatrix/8365bf05d4184aeae712191ced7a8aba to your computer and use it in GitHub Desktop.
#!/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