This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
登録
サインイン
andreagus
/
ce-paper
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ソースを参照
Wrote a little script that provides the word count of the latex sources
andreagus
8 年 前
親
49cf44fc84
コミット
2309ac58ac
1 ファイル変更
、
2 行追加
、
0 行削除
分割表示
差分情報を表示
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}'