diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-05-27 19:14:00 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-05-27 19:14:00 +0300 |
commit | 4be8482daed5524db80bd46019b5a4dcc74303ee (patch) | |
tree | 9e68f229d56e72fd93b72781deda96ce919d8a89 /bin/ak-zchain-extract-data-cids | |
parent | 117dd31d5322c071b4b348b61b0ef741a6044926 (diff) | |
download | arching-kaos-tools-4be8482daed5524db80bd46019b5a4dcc74303ee.tar.gz arching-kaos-tools-4be8482daed5524db80bd46019b5a4dcc74303ee.tar.bz2 arching-kaos-tools-4be8482daed5524db80bd46019b5a4dcc74303ee.zip |
Refactored ak-zchain-* reducing scripts number
Diffstat (limited to 'bin/ak-zchain-extract-data-cids')
-rwxr-xr-x | bin/ak-zchain-extract-data-cids | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/bin/ak-zchain-extract-data-cids b/bin/ak-zchain-extract-data-cids deleted file mode 100755 index 303d595..0000000 --- a/bin/ak-zchain-extract-data-cids +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -# Outputs all the "ipfs" values from the DATA blocks of our ZCHAIN -if [ ! -z $1 ] -then - ak-enter $1 | jq | grep ipfs | awk '{print $2}' | sed -e 's/"//g;s/,//g' -else - ak-enter | jq | grep ipfs | awk '{print $2}' | sed -e 's/"//g;s/,//g' -fi |