diff options
Diffstat (limited to 'writeup/wordcount.sh')
-rwxr-xr-x | writeup/wordcount.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/writeup/wordcount.sh b/writeup/wordcount.sh index 74eb254..ed898ea 100755 --- a/writeup/wordcount.sh +++ b/writeup/wordcount.sh @@ -1,2 +1,3 @@ #!/bin/sh -detex writeup.tex | wc -w +detex writeup.tex | tail -c +85 | wc -w # using the tail to cut of the stuff detex cant handle + |