aboutsummaryrefslogtreecommitdiff
path: root/json2bash
diff options
context:
space:
mode:
Diffstat (limited to 'json2bash')
-rwxr-xr-xjson2bash11
1 files changed, 11 insertions, 0 deletions
diff --git a/json2bash b/json2bash
new file mode 100755
index 0000000..347ca93
--- /dev/null
+++ b/json2bash
@@ -0,0 +1,11 @@
+#!/bin/bash
+#
+# json2bash
+#
+# Kaotisk Hund <kaotisk/kaotiskhund>
+#
+# Strips " , { } from input and replaces ":" with =
+#
+# Usage:
+# ipfs cat <hash> | 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'