aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-json2bash
blob: ee64f669c827627ec5ec5945855afd91e46cc6da (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
#
# ak-json2bash
# 
# Kaotisk Hund <kaotisk/kaotiskhund>
# 
# Strips " , { } from input and replaces ":" with =
#
# Usage:
# 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'