Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save laszlomiklosik/3c97cb609e4528e9eda3 to your computer and use it in GitHub Desktop.
Save laszlomiklosik/3c97cb609e4528e9eda3 to your computer and use it in GitHub Desktop.
Search file by contained text (Linux command)
# find all XML files from current directory (including its subdirectories recursively) by content 'sonar'
find . -name '*.xml' -print0 | xargs -0 grep 'sonar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment