aboutsummaryrefslogtreecommitdiff
path: root/bin/fgscr.sh
blob: 137e0dd80ede5419ffdae82112e1b77b584ddea2 (plain) (blame)
1
2
3
4
5
6
7
8
# Find all the Git repositories in a directory and scrub them all

# Check we have gscr(1df) first
command -v gscr >/dev/null 2>&1 || exit

# Look for any dir named .git in the given (default current) dir and run
# gscr(1df) on it
find "${@:-.}" -name '*.git' -type d -exec gscr {} \;