3 lines
118 B
Bash
3 lines
118 B
Bash
|
ls | while read dir; do if [ -d "$dir/.git" ];
|
||
|
then echo "Pulling updates for $dir...";
|
||
|
git -C "$dir" pull; fi; done
|