updateall : suppression script git

This commit is contained in:
Ahurac 2024-04-12 10:17:23 +02:00
parent 7536613376
commit 17ddadab1b

View file

@ -1,20 +0,0 @@
#!/usr/bin/env sh
[ -z "$SSH_AGENT_PID" ] && exec ssh-agent -- "$0" "$@"
ssh-add
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