Akemi Yagi a écrit :
One quick and dirty method will be to count the word "showpage' that is not commented out. But this may not give you an accurate number of pages (some aliases might be used).
I found a neat solution, finally. My initial document is a PDF, so here goes:
$ pdfinfo file.pdf | grep Pages | cut -d : -f 2 | tr -d ' '
Cheers,
Niki