Always sort output

This commit is contained in:
BarbUk 2021-06-18 13:47:06 +04:00
parent 2c30426b60
commit ca67e806a7
No known key found for this signature in database
GPG Key ID: DB301C759539E9FE

3
snippy
View File

@ -234,7 +234,8 @@ list() {
find -L . -type "$type" \
| grep -vE '^\.$|\.git|\.gitconfig|\.gitkeep|\.gitignore' \
| sed -e 's!\.\/!!'
| sed -e 's!\.\/!!' \
| sort
}
add() {