This website works better with JavaScript
Etusivu
Tutki
Apua
Rekisteröidy
Kirjaudu sisään
andreagus
/
ce-paper
Tarkkaile
1
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Pull-pyynnöt
0
Wiki
Selaa lähdekoodia
Wrote a little script that provides the word count of the latex sources
andreagus
8 vuotta sitten
vanhempi
49cf44fc84
commit
2309ac58ac
1 muutettua tiedostoa
jossa
2 lisäystä
ja
0 poistoa
Jaettu näkymä
Näytä diff tilastot
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Näytä tiedosto
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'