aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-calculate-size
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ak-calculate-size')
-rwxr-xr-xbin/ak-calculate-size14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/ak-calculate-size b/bin/ak-calculate-size
deleted file mode 100755
index 63ae2f7..0000000
--- a/bin/ak-calculate-size
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-ak-extract-cids > to_stats
-sum=0 ; while IFS="" read -r p || [ -n "$p" ]
-do
- if [ "$p" != "" ]
- then
- num=$(ak-ipfs-block-stat $p | grep Size | sed -e 's/Size: //g')
- else
- num=0
- fi
- sum=$(expr $sum + $num )
-done < to_stats
-echo "Chain is : $sum bytes"
-rm to_stats