Linux Basic Commands

Backticks

Everything typed between backticks is evaluated (executed) by the shell before the main command (like echo in  example),

and the output of that execution is used by that command, just as if you'd type that output at that place in the command line.

 

$ echo `id -u`

 

Command id -u gives 1000, so the final result is 1000.