21 lines
459 B
Bash
Executable File
21 lines
459 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [[ -n $1 ]]; then
|
|
echo "File contains $(pdfinfo $1 | awk '/^Pages:/ {print $2}') pages"
|
|
else
|
|
total=0
|
|
count=0
|
|
for file in $(find . -name "*.pdf" -type f | sort -n | grep pdf); do
|
|
count_file=$(pdfinfo $file | awk '/^Pages:/ {print $2}')
|
|
echo "$count_file pages in $file"
|
|
total=$(($total + count_file))
|
|
count=$((count + 1))
|
|
done
|
|
|
|
echo "
|
|
-> Total page count: $total
|
|
-> Total files: $count
|
|
-> Median: $(($total / $count))
|
|
"
|
|
fi
|