check if variable contains letter Bahs code example
Example 1: substring if statement variable shell script
if echo "$string" | grep 'foo'; then
echo "It's there!"
fi
Example 2: substring if statement variable shell script
string="My string"
if echo "$string" | grep 'foo'; then
echo "It's there!"
fi
string="My string"