This website works better with JavaScript
Accueil
Explorer
Aide
S'inscrire
Connexion
andreagus
/
ce-paper
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Parcourir la source
Wrote a little script that provides the word count of the latex sources
andreagus
il y a 8 ans
Parent
49cf44fc84
commit
2309ac58ac
1 fichiers modifiés
avec
2 ajouts
et
0 suppressions
Vue séparée
Afficher les stats Diff
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Voir le fichier
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'