Answers for "count the pages of multiple pdf files in linux"

0

count the pages of multiple pdf files in linux

for i in *.pdf; do pdfinfo "$i" | grep "^Pages:"; done | awk '{s+=$2} END {print s}'
Posted by: Guest on October-20-2021

Code answers related to "count the pages of multiple pdf files in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language