Linux Community
The backtick character ` is being used for command substitution. However, it is being phased out in favour of $().
e.g.
$ t=`date +%s`$ echo $t1455187515$ t=$(date +%s)$ echo $t1455187528