pages*: fix various proper names, acronyms and initialisms (#12494)

This commit is contained in:
Vitor Henrique
2024-03-14 02:01:06 -03:00
committed by GitHub
parent 33770df77d
commit 935d605998
243 changed files with 415 additions and 415 deletions

View File

@@ -1,20 +1,20 @@
# ssh-keyscan
> Get the public ssh keys of remote hosts.
> Get the public SSH keys of remote hosts.
> More information: <https://man.openbsd.org/ssh-keyscan>.
- Retrieve all public ssh keys of a remote host:
- Retrieve all public SSH keys of a remote host:
`ssh-keyscan {{host}}`
- Retrieve all public ssh keys of a remote host listening on a specific port:
- Retrieve all public SSH keys of a remote host listening on a specific port:
`ssh-keyscan -p {{port}} {{host}}`
- Retrieve certain types of public ssh keys of a remote host:
- Retrieve certain types of public SSH keys of a remote host:
`ssh-keyscan -t {{rsa,dsa,ecdsa,ed25519}} {{host}}`
- Manually update the ssh known_hosts file with the fingerprint of a given host:
- Manually update the SSH known_hosts file with the fingerprint of a given host:
`ssh-keyscan -H {{host}} >> ~/.ssh/known_hosts`