This question already has an answer here:
- What is the difference between $(command) and `command` in shell programming? 6 answers
I see in bash scripts two different forms which seems to do the same:
`some command`
and
$(some command)
What is the difference between the two, and when should I use each one of them?