7 lines
83 B
Bash
Executable File
7 lines
83 B
Bash
Executable File
cd ~/gits
|
|
for d in */; do
|
|
cd "$d"
|
|
git pull
|
|
docker compose restart
|
|
done
|