git-shell-commands/ls

7 lines
182 B
Text
Raw Permalink 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 echo $repo | cut -c3- | rev | cut -c5- | rev; done | sort
2019-02-17 18:35:40 +00:00