git-shell-commands/ls

7 lines
166 B
Text
Raw Normal View History

#!/usr/bin/env sh
2019-02-17 18:35:40 +00:00
source "$(dirname "$0")/pre-script"
for repo in $(/usr/bin/find -maxdepth 2 -type d -name "*.git"); do /usr/bin/basename $repo .git; done | sort
2019-02-17 18:35:40 +00:00