Skip to content

Instantly share code, notes, and snippets.

@aaronott
Created February 15, 2019 14:17
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 aaronott/4fd01ddd2c44ea03072bea3de4a2b389 to your computer and use it in GitHub Desktop.
Save aaronott/4fd01ddd2c44ea03072bea3de4a2b389 to your computer and use it in GitHub Desktop.
grep through .docx files
#!/bin/bash
for f in *.docx; do if [[ $(unzip -p $f | grep -l "$1") ]] ; then echo "$f contains a match"; fi ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment