From bfd0ff5979052ecb4556264641235e32d04834be Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 8 Aug 2024 23:28:33 -0300 Subject: Fix: typo --- ssh-agent-loadkey | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-agent-loadkey b/ssh-agent-loadkey index c49baca..45a941d 100755 --- a/ssh-agent-loadkey +++ b/ssh-agent-loadkey @@ -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 -- cgit v1.2.3