diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-01 00:46:46 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-01 00:46:46 +0200 |
commit | de65283475653e33de0b6be28f08b9d5004e9080 (patch) | |
tree | 332284d2cb5fff9efa399a55f0d2075af415d9b3 | |
parent | 8323eaa985dcac1152e62df28903c643ce2c9f45 (diff) | |
download | arching-kaos-tools-de65283475653e33de0b6be28f08b9d5004e9080.tar.gz arching-kaos-tools-de65283475653e33de0b6be28f08b9d5004e9080.tar.bz2 arching-kaos-tools-de65283475653e33de0b6be28f08b9d5004e9080.zip |
Fixes leftovers from refactoring
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | bin/ak-zchain-calculate-size | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -213,7 +213,6 @@ ak-clean # Cleans up temporary folders created by these tools ak-config # Publish your configuration to IPNS ak-data-expand # Expands and verifies DATA blocks ak-enter # Crawls ZCHAINS -ak-extract-cids # Prints the CIDs from your ZCHAIN for further usage ak-node-info # Returns IPFS CID or IPNS key for your online config ak-get-chain-minified # Obsolete, ak-enter default output ak-get-gpg # Return your GPG key as IPFS CID @@ -272,6 +271,7 @@ Zchain tools ak-zchain-chk # TODO ak-zchain-rebase # Rebases ZCHAIN to specified ZBLOCK ak-zchain-reset # Resets ZCHAIN to GENESIS +ak-zchain-extract-cids # Retuns CIDs from a zchain File splitters -------------- diff --git a/bin/ak-zchain-calculate-size b/bin/ak-zchain-calculate-size index ca41e53..fe99187 100755 --- a/bin/ak-zchain-calculate-size +++ b/bin/ak-zchain-calculate-size @@ -7,9 +7,9 @@ cd $temp if [ ! -z $1 ] && [ -n "$1" ] then - ak-extract-cids $1 > to_stats + ak-zchain-extract-cids $1 > to_stats else - ak-extract-cids > to_stats + ak-zchain-extract-cids > to_stats fi sum=0 ; while IFS="" read -r p || [ -n "$p" ] |