fdb958ad4c
Les scripts de updateall sont désormais dans le dossier config
12 lines
205 B
Bash
Executable file
12 lines
205 B
Bash
Executable file
#!/bin/sh
|
|
if cd ~/git; then
|
|
for repo in *; do
|
|
cd "$repo" || continue
|
|
printf '\n%s\n' "$repo"
|
|
git pull
|
|
cd ..
|
|
done
|
|
else
|
|
>&2 echo "Can't find your git folder!"
|
|
fi
|
|
|