]> gitweb.fluxo.info Git - utils-ssh.git/commitdiff
Fix: typo
authorSilvio Rhatto <rhatto@riseup.net>
Fri, 9 Aug 2024 02:28:33 +0000 (23:28 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Fri, 9 Aug 2024 02:28:33 +0000 (23:28 -0300)
ssh-agent-loadkey

index c49bacaaacbf6553e1d8419f98b64683c29f039d..45a941da0c4f5fc8134bbd04df9fe76776db4a01 100755 (executable)
@@ -16,7 +16,7 @@ fi
 # Get available keys
 function __query {
   (
-  cd $KEYS && find -name '*.pub' | sed -e 's/.pub$//' | grep -v decomissioned | while read line; do
+  cd $KEYS && find -name '*.pub' | sed -e 's/.pub$//' | grep -v decommissioned | while read line; do
     # See https://security.stackexchange.com/questions/129724/how-to-check-if-an-ssh-private-key-has-passphrase-or-not#129727
     #if grep -q ',ENCRYPTED' $line; then
     if ! ssh-keygen -y -P "" -f $line &> /dev/null; then