This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
andreagus
/
ce-paper
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Sfoglia il codice sorgente
Wrote a little script that provides the word count of the latex sources
andreagus
8 anni fa
parent
49cf44fc84
commit
2309ac58ac
1 ha cambiato i file
con
2 aggiunte
e
0 eliminazioni
Visualizzazione separata
Mostra Diff Stats
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Vedi File
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'