docs: Add advanced SSH article (SSH keys) (#503)

---------

Co-authored-by: Oleg Kalachev <okalachev@gmail.com>
This commit is contained in:
Qandra Si
2024-03-12 19:33:55 +03:00
committed by GitHub
parent cfeff0c74d
commit 3b7242f3d6
10 changed files with 392 additions and 3 deletions

View File

@@ -30,6 +30,16 @@ Print path to the current directory:
pwd
```
Go to the user's home directory:
```bash
# all three commands are equivalent, where the tilde character (~) is an abbreviated
# path entry to the home directory, and the $HOME variable stores this path
cd
cd ~
cd $HOME
```
Print contents of the `file.py` file:
```bash