mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 17:06:02 +02:00
Fix SSH page format for syntax highlighting
This commit is contained in:
parent
72911b663a
commit
2d9d490f66
1 changed files with 10 additions and 6 deletions
|
@ -1,12 +1,16 @@
|
||||||
SSH, or Secure Shell, is a protocol used to securely log onto remote systems.
|
# SSH
|
||||||
> a program used for logging or executing commands on a remote server.
|
|
||||||
|
> Secure Shell is a protocol used to securely log onto remote systems.
|
||||||
|
> It can be used for logging or executing commands on a remote server.
|
||||||
|
|
||||||
- connecting to a remote server
|
- connecting to a remote server
|
||||||
`ssh username@remote_host`
|
|
||||||
|
`ssh {{username}}@{{remote_host}}`
|
||||||
|
|
||||||
- connecting to a remote server with specific port
|
- connecting to a remote server with specific port
|
||||||
`ssh username@remote_host` -P 2222
|
|
||||||
|
`ssh {{username}}@{{remote_host}} -P {{2222}}`
|
||||||
|
|
||||||
- ssh tunneling
|
- ssh tunneling
|
||||||
`ssh -D 9999 -C username@remote_host`
|
|
||||||
~
|
`ssh -D {{9999}} -C {{username}}@{{remote_host}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue