8 lines
83 B
Bash
8 lines
83 B
Bash
#!/bin/bash
|
|
|
|
dir=$(ls -d */)
|
|
for i in $dir
|
|
do
|
|
cd ./$i/ && git pull && cd ..
|
|
done
|