Преглед на файлове

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

andreagus преди 8 години
родител
ревизия
2309ac58ac
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  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}'