Possible Duplicate:
Command substitution: backticks or dollar sign / paren enclosed?
I want know the difference between use
var="$(command)"
and
var=`command`
in bash scripting, aparently are two ways to get the same result, but is possible that exist some diferences.