diff options
Diffstat (limited to 'project')
-rwxr-xr-x | project | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -430,6 +430,18 @@ case $operation in # Run the actual project. controlled_env reproduce/analysis/make/top-make.mk + + # Print the number of words (if the user has pdftotext outside of + # Maneage! For now!!!), AND there actually is a 'paper.pdf' (for + # example when running './project make clean' there isn't any + # 'paper.pdf'). + if [ -f paper.pdf ]; then + if type pdftotext > /dev/null 2>/dev/null; then + numwords=$(pdftotext paper.pdf && cat paper.txt | wc -w) + echo; echo "Number of words in full PDF: $numwords" + rm paper.txt + fi + fi ;; |