This website works better with JavaScript
Inicio
Explorar
Ayuda
Registro
Iniciar sesión
andreagus
/
ce-paper
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Pull Requests
0
Wiki
Explorar el Código
Wrote a little script that provides the word count of the latex sources
andreagus
hace 8 años
padre
49cf44fc84
commit
2309ac58ac
Se han
modificado 1 ficheros
con
2 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Ver fichero
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'