Script de shell de comparación parcial de comparación

string='My long string'
if [[ $string == *"My long"* ]]; then
  echo "It's there!"
fi
Smoggy Scarab