This commit is contained in:
Alex A. Naanou 2021-03-18 03:22:21 +03:00 committed by GitHub
commit 0d8d6a15b3

12
git-pullall Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
for d in * ; do
# skip non-dirs...
! [ -d "$d/.git" ] && continue
echo $d
cd "$d"
git pull
cd ..
echo
done