dotfiles/scripts/pdfpages
2018-11-24 13:45:14 +01:00

9 lines
175 B
Bash
Executable file

#!/usr/bin/bash
# From https://stackoverflow.com/a/14736593
for FILE in "$@"
do
printf "$FILE: "
pdftk "$FILE" dump_data | grep NumberOfPages | awk '{print $2}'
done