May 2018
Beginner
332 pages
7h 28m
English
On a keyboard, there is one interesting key, the backward quote, `. This key is normally situated below the Esc key. If we place text between two successive backquotes, then echo will execute those as commands instead of processing them as plain text.
Alternate syntax for $(command) is the backtick character `, which we can see as follows:
$(command) or `command`
For example:
$ echo "Hello, whoami"
Hello, whoami
$ echo "Hello, `whoami`."
Hello, student