Überprüfen Sie, ob die Variable String Bash enthält

STRING='Hello world'
if [[ $STRING =~ "Hello" ]] ; then echo "It's here" ; fi
Annoying Armadillo