mirror of
https://github.com/lnbook/lnbook
synced 2024-11-06 21:20:29 +00:00
4 lines
192 B
Bash
Executable File
4 lines
192 B
Bash
Executable File
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
|