diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-02-28 07:09:00 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-02-28 07:09:00 +0200 |
commit | 9da29bce4fdd4ca0754f9c505b746d68182f6046 (patch) | |
tree | 0de34422eb0fd88ea47b51146667d85ba28dcc77 /bin/ak-zchain-extract-cids | |
parent | 9c249804a4555793532b7ee3eb2d501c2f328cb9 (diff) | |
download | arching-kaos-tools-9da29bce4fdd4ca0754f9c505b746d68182f6046.tar.gz arching-kaos-tools-9da29bce4fdd4ca0754f9c505b746d68182f6046.tar.bz2 arching-kaos-tools-9da29bce4fdd4ca0754f9c505b746d68182f6046.zip |
Refactoring
Diffstat (limited to 'bin/ak-zchain-extract-cids')
-rwxr-xr-x | bin/ak-zchain-extract-cids | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bin/ak-zchain-extract-cids b/bin/ak-zchain-extract-cids new file mode 100755 index 0000000..a07c481 --- /dev/null +++ b/bin/ak-zchain-extract-cids @@ -0,0 +1,13 @@ +#!/bin/bash +# +# Extracts unique IPFS CIDs from an ak-entered zchain +# +# 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 | grep Qm | sed -e 's/".*"://g; s/ //g; s/[{,"]//g' | sort | uniq +else + ak-enter | jq | grep Qm | sed -e 's/".*"://g; s/ //g; s/[{,"]//g' | sort | uniq +fi |