Mirror von
https://tildegit.org/ben/dotfiles.git
synchronisiert 2025-07-18 18:42:02 +00:00
12 Zeilen
191 B
Bash
Ausführbare Datei
12 Zeilen
191 B
Bash
Ausführbare Datei
#!/bin/sh
|
|
|
|
repos=$(find ~/workspace -type d -name .git)
|
|
|
|
for repo in $repos; do
|
|
dir=$(dirname "$repo")
|
|
printf "%s\n" "$(basename "$dir")"
|
|
git -C "$dir" "$@"
|
|
printf "\n"
|
|
done
|
|
|