aboutsummaryrefslogtreecommitdiff
path: root/json2bash
blob: 347ca932c1041e285aed7b393240f054fbedb7ca (plain)
1
2
3
4
5
6
7
8
9
10
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'