backtick

bash backtick ` character

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

Syndicate content