aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-zchain-calculate-size
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ak-zchain-calculate-size')
-rwxr-xr-xbin/ak-zchain-calculate-size30
1 files changed, 0 insertions, 30 deletions
diff --git a/bin/ak-zchain-calculate-size b/bin/ak-zchain-calculate-size
deleted file mode 100755
index 5603221..0000000
--- a/bin/ak-zchain-calculate-size
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-PROGRAM="$(basename $0)"
-source $AK_LIBDIR/_ak_ipfs
-
-temp="$(mktemp -d)"
-
-cd $temp
-
-if [ ! -z $1 ] && [ -n "$1" ]
-then
- ak-zchain-extract-cids $1 > to_stats
-else
- ak-zchain-extract-cids > to_stats
-fi
-
-sum=0 ; while IFS="" read -r p || [ -n "$p" ]
-do
- if [ "$p" != "" ]
- then
- _ak_ipfs_get $p
- num="$(du -bs --apparent-size $p | cut -d $'\t' -f 1)"
- else
- num=0
- fi
- sum=$(expr $sum + $num )
-done < to_stats
-echo "Chain is : $sum bytes"
-
-cd ~
-rm -rf $temp