diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2019-03-26 23:31:20 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2019-03-26 23:31:20 -0300 |
commit | b3173cd035a96077573668f158d82ab82a7a4719 (patch) | |
tree | 06f87e5b7969c644b764d7aff0dc3055fca5ad35 | |
parent | 6e9267bf75c6d7ce93e7a4be22d88d2c354cfcb9 (diff) | |
download | utils-ssh-b3173cd035a96077573668f158d82ab82a7a4719.tar.gz utils-ssh-b3173cd035a96077573668f158d82ab82a7a4719.tar.bz2 |
Sort loaded keys
-rwxr-xr-x | ssh-agent-loadkey | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh-agent-loadkey b/ssh-agent-loadkey index 841e3d2..deab2dc 100755 --- a/ssh-agent-loadkey +++ b/ssh-agent-loadkey @@ -51,7 +51,7 @@ function __loaded { fi echo "$handle ($type)" - done | column -t -c 6 + done | sort | column -t -c 6 } # Key chooser mennu |