4 lines
115 B
Bash
Executable File
4 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find $@ -print0 |xargs -0 -n1 pdfinfo|grep Pages|awk '{print $2}' > opensym2017-pdf_page_lengths.list
|