Add keyword counting scripts

This commit is contained in:
peterpy8 2018-06-11 15:07:30 -07:00
parent f991995918
commit 8d160ac1b6
2 changed files with 84 additions and 0 deletions

10
count_eth.sh Normal file
View file

@ -0,0 +1,10 @@
#!/bin/sh
dirlist=$(find -mindepth 1 -maxdepth 1 -type d)
for dir in $dirlist
do
cd $dir
echo $dir
grep -i eth -r | wc -l
cd ..
done

74
current_count.tsv Normal file
View file

@ -0,0 +1,74 @@
./.git
13
./.github
6
./accounts
865
./bmt
20
./build
136
./cmd
1599
./common
194
./consensus
368
./console
100
./containers
20
./contracts
312
./core
1290
./crypto
158
./dashboard
275
./eth
1194
./ethclient
88
./ethdb
36
./ethstats
55
./event
73
./internal
919
./les
560
./light
246
./log
45
./metrics
31
./miner
109
./mobile
329
./node
163
./p2p
657
./params
85
./rlp
66
./rpc
337
./signer
235
./swarm
616
./tests
154
./trie
206
./vendor
5513
./whisper
300
1 ./.git
2 13
3 ./.github
4 6
5 ./accounts
6 865
7 ./bmt
8 20
9 ./build
10 136
11 ./cmd
12 1599
13 ./common
14 194
15 ./consensus
16 368
17 ./console
18 100
19 ./containers
20 20
21 ./contracts
22 312
23 ./core
24 1290
25 ./crypto
26 158
27 ./dashboard
28 275
29 ./eth
30 1194
31 ./ethclient
32 88
33 ./ethdb
34 36
35 ./ethstats
36 55
37 ./event
38 73
39 ./internal
40 919
41 ./les
42 560
43 ./light
44 246
45 ./log
46 45
47 ./metrics
48 31
49 ./miner
50 109
51 ./mobile
52 329
53 ./node
54 163
55 ./p2p
56 657
57 ./params
58 85
59 ./rlp
60 66
61 ./rpc
62 337
63 ./signer
64 235
65 ./swarm
66 616
67 ./tests
68 154
69 ./trie
70 206
71 ./vendor
72 5513
73 ./whisper
74 300