This website works better with JavaScript
Home
Explore
Help
Register
Sign In
andreagus
/
ce-paper
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
Wrote a little script that provides the word count of the latex sources
andreagus
8 years ago
parent
49cf44fc84
commit
2309ac58ac
1 changed files
with
2 additions
and
0 deletions
Split View
Show Diff Stats
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
View File
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'