git-shell-commands/ls
William Brawner 5c1487694f Fix ls command not including path
Signed-off-by: William Brawner <me@wbrawner.com>
2019-12-30 14:27:36 -06:00

6 lines
182 B
Bash
Executable file

#!/usr/bin/env sh
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