How do you replace a bash variable right next to a string so the variable you are replacing is not misinterpreted?
For Instance::
NUMBER=33
echo "$NUMBERs"
In my case I want this to echo out "33s" but bash is interpereting this variable as "$NUMBERs" when I want it to be "$NUMBER"