aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2022-09-07 00:58:01 +0300
committerkaotisk <kaotisk@arching-kaos.org>2022-09-07 00:58:01 +0300
commitd54132bfd7cc569cfef7beda0860a375625383ea (patch)
treef4034d9e9b4982fb71026e19e54168ccc38443cc /bin
parentae6064bc89a0cbb73d7416bb5103aba42d331f97 (diff)
downloadarching-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')
-rwxr-xr-xbin/calculate-size9
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