-
-
Notifications
You must be signed in to change notification settings - Fork 308
/
stats.sh
32 lines (24 loc) · 857 Bytes
/
stats.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
abook=`grep -io '[a-z0-9/-]*\.md' SUMMARY.md | grep -v index.md`
book="README.md $abook"
tbd=`cat $book | grep -c ^TBD`
titles=`cat $book | grep -c ^#`
content=`echo "$titles-$tbd" | bc`
words=`cat $book | wc -w`
lines=`cat $book | wc -l`
nonspace=`cat $book | tr -d ' #\n' | wc -c`
echo "Section titles: $titles"
#echo "Sections with content: $content"
#echo "Sections to go: $tbd"
echo "Words: $words"
echo "Lines: $lines"
echo "Non-space bytes: $nonspace"
wordlen=`echo "scale=2; $nonspace / $words" | bc`
echo "Average word length: $wordlen characters"
complete=`echo "scale=1; $content*100/$titles" | bc`
secsize=`echo "$words/$content" | bc`
echo "Words per section: $secsize"
#echo "Completeness: $complete %"
left=`echo "$tbd * $secsize" | bc`
total=`echo "$secsize * $titles" | bc`
#echo "Estimated $left words left until $total"