https://www.computerhope.com/unix/uat.htm
when leaving office with running processes
sudo at 20:55 shutdown -h now # press Ctrl + d # relative: sudo at now + 2 hours sudo at now + 30 minutes
Lock screen (usually Windows key + L) and leave
try tab for autocompletion - sometimes even twice
cd -
cd ~ # or simpler: cd
or
Ctrl + r and continue with search termCtrl + r again for multiple/next matchCtrl + c to abortor
history |grep term
check all with bind -p
Alt + . prints last argument from previous commandCtrl + x + * expand glob/starCtrl + arrow move by wordAlt + f move to next wordAlt + b move to prev wordCtrl + u to delete line to begin of lineCtrl + k to delete line to end of lineCtrl + l clear screen (lower L)!$Alt + .sudo !!
; execute sequentially&& execute next on success|| execute next on fail - until first successfollowing command prints just “hello”
false || false || echo hello || echo world
cat /etc/passwd | column -t -s :
https://monovm.com/blog/how-to-delete-line-in-nano-delete-all/
Ctrl + Shift + 6 starts markCtrl + K deletes marked region