aboutsummaryrefslogtreecommitdiff
path: root/bin/calculate-size
diff options
context:
space:
mode:
Diffstat (limited to 'bin/calculate-size')
-rwxr-xr-xbin/calculate-size9
1 files changed, 0 insertions, 9 deletions
diff --git a/bin/calculate-size b/bin/calculate-size
deleted file mode 100755
index 640d841..0000000
--- a/bin/calculate-size
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/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