This website works better with JavaScript
Halaman utama
Jelajahi
Bantuan
Daftar
Masuk
andreagus
/
ce-paper
Liatin
1
Bintangi
0
Fork
0
Berkas
Masalah
0
Permintaan Tarik
0
Wiki
Jelajahi Sumber
Wrote a little script that provides the word count of the latex sources
andreagus
8 tahun lalu
induk
49cf44fc84
melakukan
2309ac58ac
1 mengubah file
dengan
2 tambahan dan
0 penghapusan
Tampilan Split
Tampilkan Statistik Diff
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Tampilan Berkas
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'