From 07456330b30e0973a7f324580725c9aa025ea892 Mon Sep 17 00:00:00 2001 From: Kamalesh Palanisamy Date: Tue, 16 Oct 2018 17:44:31 +0530 Subject: [PATCH] Created a guide for the bash ssh command (#19450) * Created a guide about the mkdir command * Update index.md * Added a guide for the rm command in bash * Created a new guide for the chmod command * Created the guide for the ssh command * Add note on user names --- .../pages/guide/english/bash/bash-ssh/index.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 client/src/pages/guide/english/bash/bash-ssh/index.md diff --git a/client/src/pages/guide/english/bash/bash-ssh/index.md b/client/src/pages/guide/english/bash/bash-ssh/index.md new file mode 100644 index 0000000000..c0a27c6568 --- /dev/null +++ b/client/src/pages/guide/english/bash/bash-ssh/index.md @@ -0,0 +1,15 @@ +--- +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. + + +### More Information: +* [Wikipedia](https://en.wikipedia.org/wiki/Secure_Shell)