From 286b71a6ead8c7234cfbc0b8ece05c8239a4f32c Mon Sep 17 00:00:00 2001 From: kaotisk Date: Wed, 29 Mar 2023 23:45:49 +0300 Subject: Renamed everything --- bin/ak-calculate-size | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 bin/ak-calculate-size (limited to 'bin/ak-calculate-size') diff --git a/bin/ak-calculate-size b/bin/ak-calculate-size new file mode 100755 index 0000000..640d841 --- /dev/null +++ b/bin/ak-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 -- cgit v1.2.3