Simplify command that extracts the number of pages from a PostScript
file; use "grep -c" instead of "grep | wc -l | cut ... | tr ...".
This commit is contained in:
parent
39cddb7439
commit
701f10fbea
|
@ -18,6 +18,6 @@ EOF
|
|||
|
||||
for PART in api ext lib mac ref tut ; do
|
||||
FILE=paper-$PAPER/$PART.ps
|
||||
PAGECOUNT=`grep '^%%Page:' $FILE | wc -l | cut -f 1 | tr -d ' '`
|
||||
PAGECOUNT=`grep -c '^%%Page:' $FILE`
|
||||
echo " $PART.ps -- $PAGECOUNT pages"
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue