diff options
Diffstat (limited to 'bin/ak-zchain-extract-cids')
-rwxr-xr-x | bin/ak-zchain-extract-cids | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/ak-zchain-extract-cids b/bin/ak-zchain-extract-cids deleted file mode 100755 index 61e0da5..0000000 --- a/bin/ak-zchain-extract-cids +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -## -## Extracts unique IPFS CIDs from an ak-entered zchain -## -## -h, --help Prints this help message -## -# -# Previously: -# ak-enter | jq | grep Qm | sed -e 's/^.*Qm/Qm/g' | cut -d '"' -f 1 -# -if [ ! -z $1 ] && [ -n "$1" ] -then - ak-enter $1 | jq -M | grep Qm | sed -e 's/".*"://g; s/ //g; s/[{,"]//g' | sort | uniq -else - ak-enter | jq -M | grep Qm | sed -e 's/".*"://g; s/ //g; s/[{,"]//g' | sort | uniq -fi |