d2977eee32
[ci skip]
10 lines
136 B
Bash
10 lines
136 B
Bash
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
DIR=${1:-repos}
|
|
|
|
find "$DIR" -mindepth 3 -maxdepth 3 -type d \
|
|
| sed -e "s/$DIR/https:\//g" \
|
|
| sort
|