diff options
author | Rasmus Steinke <rasi@xssn.at> | 2017-07-15 00:47:38 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2017-07-15 00:47:38 +0200 |
commit | 33174cc5494509bfb231519d6ba9f8e02f35507c (patch) | |
tree | 885f66e03909844564e1f48d8cc4d882ae030369 | |
parent | 0ed16e869a25c4a707bd7393aeeb061304ab90d8 (diff) | |
download | rofi-pass-33174cc5494509bfb231519d6ba9f8e02f35507c.tar.gz |
sort entries alphabetically. Thanks alexzeitgeist. #75
-rwxr-xr-x | rofi-pass | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ umask 077 list_passwords() { cd "${root}" || exit - find -L . -iname '*.gpg' -printf '%P\n' | \ + find -L . -iname '*.gpg' -printf '%P\n' | sort -n | \ while read -r filename; do echo "${filename%.gpg}" done |