mirror of
https://git.alemi.dev/gitshell.git
synced 2024-11-14 11:49:19 +01:00
10 lines
193 B
Bash
Executable file
10 lines
193 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# ls /srv/git -I 'git-shell-commands'
|
|
|
|
# one above misses repos like '.dotfiles', let's do it by hand
|
|
for f in $(ls /srv/git -a); do
|
|
if [[ $f == *.git ]]; then
|
|
echo $f
|
|
fi
|
|
done
|