Linux Reference

Movement

CommandMeaning
cd <path>Moves to <path>
cd ..Moves one level above
lsShow available directories at current level
ls -laShow all directories + hidden files

Vim

CommandMeaning
vim <file>Opens file with vim
iStarts editing at cursor
:wqSave (w) then exit (q)
rm <file>Remove/delete file
rm .docker-compose.yml.swpRemove swap file named .docker-compose.yml.swp

SSH

CommandMeaning
ssh <username>@<IP address> –p22Login as user at IP address using port 22 (SSH)