mirror of
https://github.com/lnbook/lnbook
synced 2024-11-08 19:10:35 +00:00
4 lines
192 B
Bash
4 lines
192 B
Bash
|
D=$(wc ../bitcoinbook/ch* | grep "total" | awk '{print $3}')
|
||
|
N=$(wc ch* | grep "total" | awk '{print $3}')
|
||
|
echo 'print("{:2.2f} % Chars of Mastering Bitcoin".format('$N'*100/'$D'))' | python3
|