This website works better with JavaScript
홈
탐색
도움말
가입하기
로그인
andreagus
/
ce-paper
Watch
1
Star
0
포크
0
파일
이슈
0
풀 리퀘스트
0
위키
소스 검색
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}'