diff options
Diffstat (limited to 'bin/calculate-size')
-rwxr-xr-x | bin/calculate-size | 9 |
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 |