aboutsummaryrefslogtreecommitdiffstats
path: root/roles/jails/22_forge/files/git-shell-commands/ls
blob: ef5d3e570677dbdf53ad8fd7d42f44b9c3eb0e21 (plain)
1
2
3
4
#!/bin/sh
find . -maxdepth 1 -type d -name "*.git" | while read repo; do
    basename "$repo" .git
done | sort