Always sort output

This commit is contained in:
BarbUk
2021-06-18 13:47:06 +04:00
parent 2c30426b60
commit ca67e806a7

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() {