Проверка, существует ли подстроение в струнке
string='Haystack';
if [[ $string =~ "Needle" ]]
then
echo "It's there!"
fi
Clumsy Coyote
string='Haystack';
if [[ $string =~ "Needle" ]]
then
echo "It's there!"
fi