summaryrefslogtreecommitdiff
path: root/writeup/wordcount.sh
diff options
context:
space:
mode:
Diffstat (limited to 'writeup/wordcount.sh')
-rwxr-xr-xwriteup/wordcount.sh3
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
+