Bash String Interpolation

apples=4
echo "I have $apples apples"
# or
echo "I have ${apples} apples"
Puzzled Puffin