aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-json2bash
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ak-json2bash')
-rwxr-xr-xbin/ak-json2bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ak-json2bash b/bin/ak-json2bash
index 171a7df..ee64f66 100755
--- a/bin/ak-json2bash
+++ b/bin/ak-json2bash
@@ -7,5 +7,5 @@
# Strips " , { } from input and replaces ":" with =
#
# Usage:
-# ipfs cat <hash> | ak-json2bash
+# ak-ipfs-cat <hash> | ak-json2bash
sed -e 's/{//g' | sed -e 's/}//g' | sed -e 's/":"/=/g' | sed -e 's/"//g' | sed -e 's/,//g' | sed -e 's/ //g'