diff options
| author | tslil clingman <> | 2020-04-10 10:59:20 -0700 |
|---|---|---|
| committer | tslil clingman <> | 2020-04-10 10:59:20 -0700 |
| commit | ce57dc4e4797eb3748d4d8cc9233153c15a36c6d (patch) | |
| tree | da104ce7119fdb56d0ea60f89987c0c9566364d1 | |
| parent | cef874a5aaf7a8c2ba60603176500099cf3c4362 (diff) | |
Fixed typo in regex
| -rwxr-xr-x | unlock_keys | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unlock_keys b/unlock_keys index a6bc45f..091bc8a 100755 --- a/unlock_keys +++ b/unlock_keys @@ -2,6 +2,8 @@ eval $(keychain --eval -q --systemd) -KEY_FILES=$(ls $HOME/.ssh | grep -v '\(pub$\|^config$\|^known_hosts$\|^autohrized_keys$\)') +KEY_FILES=$(ls $HOME/.ssh | grep -v '\(pub$\|^config$\|^known_hosts$\|^authorized_keys$\)') badpass -k $KEY_FILES +sleep 1s +keychain -l echo Done! |
