Is this the way to separate variables from other text in bash:
${PROJECT}_${GITCOMMIT}.tar.gz
if PROJECT = test AND GITCOMMIT = 222
Will this give you test_222.tar.gz? When should you use braces {} when it comes to variables? Are there other ways to separate the variables in bash from text?