Skip to content

Instantly share code, notes, and snippets.

@ilkayisik
Created April 21, 2019 11:56
Show Gist options
  • Save ilkayisik/48afa63ec3b04c021bdb14b76ec7f33c to your computer and use it in GitHub Desktop.
Save ilkayisik/48afa63ec3b04c021bdb14b76ec7f33c to your computer and use it in GitHub Desktop.
search a directory with subdirectories and find if a pattern exists in listed files
for FILENAME in $(find /Users/ilkay.isik/git/ilkayisik.github.io -type f) ; do
echo $FILENAME
if grep -q isik "$FILENAME"; then
echo "isik is found"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment