Tips:

` # command substitution
\ # escape [backslash]. A quoting mechanism for single characters
/ # file path separator
: # true or do nothing
? # test operator
${} # parameter substitution
$? # exit status variable
$$ # process id variable
Example:
:${username=`whoami`}