mirror of https://tildegit.org/ben/dotfiles
12 lines
191 B
Plaintext
12 lines
191 B
Plaintext
|
#!/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
|
||
|
|