SSH: add example to run a command directly

This commit is contained in:
Romain Prieto 2014-02-18 12:31:59 +11:00
parent d90e9a4342
commit 6d7b1dc79a

View File

@ -11,6 +11,10 @@
`ssh {{username}}@{{remote_host}} -P {{2222}}`
- run a command on a remote server
`ssh {{remote_host}} "{{command -with -flags}}"`
- ssh tunneling: dynamic port forwarding (SOCKS proxy on localhost:9999)
`ssh -D {{9999}} -C {{username}}@{{remote_host}}`