mirror of
https://tildegit.org/ben/dotfiles.git
synced 2025-04-01 18:43:23 +00:00
12 lines
191 B
Bash
Executable File
12 lines
191 B
Bash
Executable File
#!/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
|
|
|