This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
andreagus
/
ce-paper
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Przeglądaj źródła
Wrote a little script that provides the word count of the latex sources
andreagus
8 lat temu
rodzic
49cf44fc84
commit
2309ac58ac
1 zmienionych plików
z
2 dodań
i
0 usunięć
Widok podzielony
Pokaż statystyki zmian
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Wyświetl plik
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'