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:
Fred Drake 1999-01-12 19:28:41 +00:00
parent 39cddb7439
commit 701f10fbea
1 changed files with 1 additions and 1 deletions

View File

@ -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