Skip to content

Instantly share code, notes, and snippets.

@halleshubham
Last active September 3, 2018 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save halleshubham/cc76fc827992e09da61e284baa9993e3 to your computer and use it in GitHub Desktop.
Save halleshubham/cc76fc827992e09da61e284baa9993e3 to your computer and use it in GitHub Desktop.
BASH script to Check for sub string
#!/bin/bash
if [[ "$string" == *"$substring"* ]]; then
# TO DO
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment