Fix spacing in Bash SSH article (#19849)

* Update index.md

Given link to apps that are designed for SSH connection.

* Update index.md
This commit is contained in:
domneedham
2018-10-25 06:39:46 +01:00
committed by Kristofer Koishigawa
parent 9bb82b3116
commit 1451ba5dd6

View File

@ -4,12 +4,9 @@ title: Bash ssh
## Bash command: ssh
**Used to connect to a remote computer** ,for example `ssh 123.456.789.012` will try to establish a connection with that host. The
address of the remote computer can be provided using an IP address or, if provided, an identifier.
If the remote computer requires user login, the form `ssh username@remote_address` can be used, which will then prompt for the user
password on successful connection.
**Used to connect to a remote computer**, for example `ssh 123.456.789.012` will try to establish a connection with that host. The address of the remote computer can be provided using an IP address or, if provided, an identifier.
If the remote computer requires user login, the form `ssh username@remote_address` can be used, which will then prompt for the user password on successful connection.
### More Information:
* [Wikipedia](https://en.wikipedia.org/wiki/Secure_Shell)