This is the first article in the series about efficient working in the shell environment. There are actually a lot articles and blop post about efficient wortking with terminal, but a lot of them are biased towards very specific uses.

Recall Last Argument of Previous Command

Creatig simple directory and entering it:

mkdir NewDirectory
cd NewDirectory

Using !$ to recall last argiment of the precious command:

mkdir NewDirectory
cd !$
cd NewDirectory

Recall Last Argument of Previous Command