瀏覽代碼

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}'