This code tries to display a echo instructions in yellow and prints back the next echo with the user input but it is failing.
#!/bin/bash
YELLOW="\033[33m";
echo -e '${YELLOW}enter app name'
read name
echo -e '${YELLOW}rebuild $name after code changes'
gives
${YELLOW}rebuild $name after code changes
instead of what the user input in yellow. Any idea how to fix it?