This website works better with JavaScript
Domovská stránka
Prehľadávať
Pomoc
Registrovať
Prihlásiť sa
andreagus
/
ce-paper
Pridať medzi pozorované
1
Hviezda
0
Fork
0
Súbory
Issues
0
Pull requesty
0
Wiki
Prechádzať zdrojové kódy
Wrote a little script that provides the word count of the latex sources
andreagus
8 rokov pred
rodič
49cf44fc84
commit
2309ac58ac
1 zmenil súbory
, kde vykonal
2 pridanie
a
0 odobranie
Rozdelené zobrazenie
Ukázať štatistiku rozdielnych dát
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Zobraziť súbor
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'