Überprüfen Sie, ob ein Substring in einer String -Bash existiert
string='Haystack';
if [[ $string =~ "Needle" ]]
then
echo "It's there!"
fi
Clumsy Coyote
string='Haystack';
if [[ $string =~ "Needle" ]]
then
echo "It's there!"
fi