aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/ssh-keys-import.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ssh-keys-import.md b/doc/ssh-keys-import.md
index d221072..e6ae96c 100644
--- a/doc/ssh-keys-import.md
+++ b/doc/ssh-keys-import.md
@@ -26,7 +26,7 @@ Then run the script:
Starting with an `authorized_keys` file you can split it on a shell:
- while read type key name; do echo $type $key $name > $name.pub; done < authorized_keys
+ grep -E '^ssh-rsa' authorized_keys | while read type key name; do echo $type $key $name > $name.pub; done
---
[◀ Go back to main README](../README.md)