diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2022-09-07 00:58:01 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2022-09-07 00:58:01 +0300 |
commit | d54132bfd7cc569cfef7beda0860a375625383ea (patch) | |
tree | f4034d9e9b4982fb71026e19e54168ccc38443cc /bin/calculate-size | |
parent | ae6064bc89a0cbb73d7416bb5103aba42d331f97 (diff) | |
download | arching-kaos-tools-d54132bfd7cc569cfef7beda0860a375625383ea.tar.gz arching-kaos-tools-d54132bfd7cc569cfef7beda0860a375625383ea.tar.bz2 arching-kaos-tools-d54132bfd7cc569cfef7beda0860a375625383ea.zip |
Tool to calculate the size of a zchain
Diffstat (limited to 'bin/calculate-size')
-rwxr-xr-x | bin/calculate-size | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/calculate-size b/bin/calculate-size new file mode 100755 index 0000000..640d841 --- /dev/null +++ b/bin/calculate-size @@ -0,0 +1,9 @@ +#!/bin/bash +extract-cids > to_stats +sum=0 ; while IFS="" read -r p || [ -n "$p" ] +do + num=$(ipfs block stat $p | grep Size | sed -e 's/Size: //g') + sum=$(expr $sum + $num ) +done < to_stats +echo "Chain is : $sum bytes" +rm to_stats |