#!/bin/bash
string=$1
if [[ $string == *"MEP"* ]]; then
  echo "It's there!"
fi
