This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng ký
Đăng nhập
andreagus
/
ce-paper
Xem
1
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Yêu cầu kéo về
0
Wiki
Browse Source
Wrote a little script that provides the word count of the latex sources
andreagus
8 năm trước cách đây
mục cha
49cf44fc84
commit
2309ac58ac
1 tập tin đã thay đổi
với
2 bổ sung
và
0 xóa
Split View
Hiển thị tình trạng sai khác
2
0
source/sections/count-word.sh
+ 2
- 0
source/sections/count-word.sh
Xem Tập Tin
@@ -0,0 +1,2 @@
+#/bin/bash
+wc -w *.tex | awk '{print $1}' | awk '{s+=$1} END {print s}'