Skip to content

Commit 3739248

Browse files
committed
dont lie. copy and paste
1 parent b9c5526 commit 3739248

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎_posts/2012-03-07-linux-verify-ssh.markdown‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ First, you need to open an app called Terminal.
6767
Copy and paste this command into Terminal to find the fingerprints for all public keys in your ".ssh" directory:
6868

6969
<pre class="terminal bootcamp">
70-
<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>
70+
<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>
7171
</pre>
7272

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

‎_posts/2012-03-07-mac-verify-ssh.markdown‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ First, you need to open Terminal.app, usually found at /Applications/Utilities.
6767
Copy and paste this command into Terminal.app to find the fingerprints for all public keys in your ".ssh" directory:
6868

6969
<pre class="terminal bootcamp">
70-
<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>
70+
<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>
7171
</pre>
7272

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

0 commit comments

Comments
 (0)