18 lines
262 B
Bash
Executable file
18 lines
262 B
Bash
Executable file
#!/bin/sh
|
|
|
|
update_repo() {
|
|
cd "$1" || return
|
|
printf 'Updating repository \033[1m%s\033[0m...\n' "$1"
|
|
git pull
|
|
}
|
|
|
|
cd ~/git || exit
|
|
|
|
for i in *; do
|
|
while [ "$(jobs -p | wc -l)" -ge 4 ]; do
|
|
sleep 1
|
|
done
|
|
update_repo "$i" &
|
|
done
|
|
|
|
wait
|