diff options
Diffstat (limited to 'project')
-rwxr-xr-x | project | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -507,7 +507,9 @@ case $operation in numwords=$(pdftotext paper.pdf && cat paper.txt | wc -w) numeff=$(echo $numwords | awk '{print $1-850+500}') echo; echo "Number of words in full PDF: $numwords" - echo "No abstract, and captions (250 for each figure): $numeff" + if [ $noappendix = 1 ]; then + echo "No abstract, and captions (250 for each figure): $numeff" + fi rm paper.txt fi fi |