aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-calculate-size
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-02-28 07:09:00 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-02-28 07:09:00 +0200
commit9da29bce4fdd4ca0754f9c505b746d68182f6046 (patch)
tree0de34422eb0fd88ea47b51146667d85ba28dcc77 /bin/ak-calculate-size
parent9c249804a4555793532b7ee3eb2d501c2f328cb9 (diff)
downloadarching-kaos-tools-9da29bce4fdd4ca0754f9c505b746d68182f6046.tar.gz
arching-kaos-tools-9da29bce4fdd4ca0754f9c505b746d68182f6046.tar.bz2
arching-kaos-tools-9da29bce4fdd4ca0754f9c505b746d68182f6046.zip
Refactoring
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