This is a command you might find yourself using a bunch. If you ever forget to add sudo to the beginning of a command you typed sudo !! will rerun the previous command with sudo.
----
$ apt upgrade
requires sudo privileges
$ sudo !!
password:
sudo apt upgrade
----