8 lines
79 B
Bash
8 lines
79 B
Bash
for dir in $(ls -d */)
|
|
do
|
|
echo Pulling in $dir
|
|
cd $dir
|
|
git pull
|
|
cd ..
|
|
done
|