Skip to content

Commit

Permalink
dont lie. copy and paste
Browse files Browse the repository at this point in the history
  • Loading branch information
defunkt committed Mar 7, 2012
1 parent b9c5526 commit 3739248
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _posts/2012-03-07-linux-verify-ssh.markdown
Expand Up @@ -67,7 +67,7 @@ First, you need to open an app called Terminal.
Copy and paste this command into Terminal to find the fingerprints for all public keys in your ".ssh" directory:

<pre class="terminal bootcamp">
<span class="codeline">$ for i in ~/.ssh/*.pub; do ssh-keygen -l -f "$i"; done<span>Print fingerprint for each public key in the ".ssh" directory in your user directory</span></span>
<span class="codeline">for i in ~/.ssh/*.pub; do ssh-keygen -l -f "$i"; done<span>Print fingerprint for each public key in the ".ssh" directory in your user directory</span></span>
</pre>

If the output says &ldquo;No such file or directory&ldquo; then you have no SSH keys locally or they are stored somewhere else.
Expand Down
2 changes: 1 addition & 1 deletion _posts/2012-03-07-mac-verify-ssh.markdown
Expand Up @@ -67,7 +67,7 @@ First, you need to open Terminal.app, usually found at /Applications/Utilities.
Copy and paste this command into Terminal.app to find the fingerprints for all public keys in your ".ssh" directory:

<pre class="terminal bootcamp">
<span class="codeline">$ for i in ~/.ssh/*.pub; do ssh-keygen -l -f "$i"; done<span>Print fingerprint for each public key in the ".ssh" directory in your user directory</span></span>
<span class="codeline">for i in ~/.ssh/*.pub; do ssh-keygen -l -f "$i"; done<span>Print fingerprint for each public key in the ".ssh" directory in your user directory</span></span>
</pre>

If the output says &ldquo;No such file or directory&ldquo; then you have no SSH keys locally or they are stored somewhere else.
Expand Down

0 comments on commit 3739248

Please sign in to comment.