9 lines
175 B
Bash
Executable file
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
|