``` if grep -o "string2" "${strgmgr}" >/dev/null; then ``` should be ``` if grep -o "$string2" "${strgmgr}" >/dev/null; then ``` right? thank you.