This website works better with JavaScript
Página Principal
Explorar
Ajuda
Registe-se
Iniciar Sessão
andreagus
/
ce-paper
Vigiar
1
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Ver Fonte
Wrote a little script that provides the word count of the latex sources
andreagus
há 8 anos atrás
pai
49cf44fc84
commit
2309ac58ac
1 ficheiros alterados
com
2 adições
e
0 exclusões
Visão Dividida
Mostrar Estatísticas Diff
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Ver Ficheiro
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'