Skip to content

Instantly share code, notes, and snippets.

@jan-matejka
Created March 5, 2013 19:04
Show Gist options
  • Select an option

  • Save jan-matejka/5093141 to your computer and use it in GitHub Desktop.

Select an option

Save jan-matejka/5093141 to your computer and use it in GitHub Desktop.
pdf total page number counter
total=0; for i in *pdf; do total=$(($total + `pdfinfo $i | grep Pages: | ydu spacesquash -s | cut -d " " -f 2`)); done; echo $total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment