aboutsummaryrefslogtreecommitdiff
path: root/json2bash
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.com>2021-12-18 08:33:02 +0200
committerkaotisk <kaotisk@arching-kaos.com>2021-12-18 08:33:02 +0200
commit606e3bd269fdc2cf687db82c43a5346f8081864f (patch)
tree2f88a716af27ebeacc7ef4c33fa467cf236c4477 /json2bash
parent6cbf9b47f966556f92565392e83b410729c8be35 (diff)
downloadarching-kaos-tools-606e3bd269fdc2cf687db82c43a5346f8081864f.tar.gz
arching-kaos-tools-606e3bd269fdc2cf687db82c43a5346f8081864f.tar.bz2
arching-kaos-tools-606e3bd269fdc2cf687db82c43a5346f8081864f.zip
Different approach on installing, now symlinks
Diffstat (limited to 'json2bash')
-rwxr-xr-xjson2bash11
1 files changed, 0 insertions, 11 deletions
diff --git a/json2bash b/json2bash
deleted file mode 100755
index 347ca93..0000000
--- a/json2bash
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/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'