Skip to content

Instantly share code, notes, and snippets.

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 xdbr/374f24c610e631414f4e5359e53f9d6e to your computer and use it in GitHub Desktop.
Save xdbr/374f24c610e631414f4e5359e53f9d6e to your computer and use it in GitHub Desktop.
for i in *.pdf ; do pdftotext "$i" - | perl -F/\\n\\n/ -0 -lane 'BEGIN { $FILE=shift @ARGV} print "$FILE:\t$_" for grep { $_ !~ /^\s*$/ } map { s/\n/ /g; $_ } grep { /^abstract/i } @F' "$i"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment