bash backtick ` character

This is a wiki page. Be bold and improve it!

If you have any questions about the content on this page, don't hesitate to open a new ticket and we'll do our best to assist you.

The backtick character ` is being used for command substitution.
However, it is being phased out in favour of $().

e.g.

$ t=`date +%s`
$ echo $t
1455187515
$ t=$(date +%s)
$ echo $t
1455187528