skrip Shell Bash Substring Perbandingan Parsial

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