mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
10 lines
No EOL
143 B
Bash
10 lines
No EOL
143 B
Bash
#!/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 |