Procházet zdrojové kódy

Wrote a little script that provides the word count of the latex sources

andreagus před 8 roky
rodič
revize
2309ac58ac
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      source/sections/count-word.sh

+ 2 - 0
source/sections/count-word.sh

@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'