There are some tricks I do a long time ago then I forget or want to share:
Save time with history expansion
First daily use case, I want to run a command but I forgot to make it as root user.
$ ls /root/
ls: cannot open directory /root/: Permission denied
$ sudo !!
sudo ls /root/
file1 ...