[CentOS] Command line tool to display number of pages in a PostScript document?

Mon Sep 7 11:37:31 UTC 2009
Niki Kovacs <contact at kikinovak.net>

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