This website works better with JavaScript
Ana Sayfa
Keşfet
Yardım
Üye Ol
Giriş Yap
andreagus
/
ce-paper
İzle
1
Yıldızla
0
Çatalla
0
Dosyalar
Sorunlar
0
Değişiklik İstekleri
0
Wiki
Kaynağa Gözat
Wrote a little script that provides the word count of the latex sources
andreagus
8 yıl önce
ebeveyn
49cf44fc84
işleme
2309ac58ac
1 değiştirilmiş dosya
ile
2 ekleme
ve
0 silme
Görünümü Böl
Farklılık Durumunu Göster
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Dosyayı Görüntüle
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'