Movement
| Command | Meaning |
|---|---|
| cd <path> | Moves to <path> |
| cd .. | Moves one level above |
| ls | Show available directories at current level |
| ls -la | Show all directories + hidden files |
Vim
| Command | Meaning |
|---|---|
| vim <file> | Opens file with vim |
| i | Starts editing at cursor |
| :wq | Save (w) then exit (q) |
| rm <file> | Remove/delete file |
| rm .docker-compose.yml.swp | Remove swap file named .docker-compose.yml.swp |
SSH
| Command | Meaning |
|---|---|
| ssh <username>@<IP address> –p22 | Login as user at IP address using port 22 (SSH) |
