aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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