diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-03-29 23:45:49 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-03-29 23:45:49 +0300 |
commit | 286b71a6ead8c7234cfbc0b8ece05c8239a4f32c (patch) | |
tree | f4662c1517fe14018d93c5503a72b8ba9da0c674 /bin/json2bash | |
parent | b5394a6bd9f0b9fbd9bafc3e963dafbbc87f2ed2 (diff) | |
download | arching-kaos-tools-286b71a6ead8c7234cfbc0b8ece05c8239a4f32c.tar.gz arching-kaos-tools-286b71a6ead8c7234cfbc0b8ece05c8239a4f32c.tar.bz2 arching-kaos-tools-286b71a6ead8c7234cfbc0b8ece05c8239a4f32c.zip |
Renamed everything
Diffstat (limited to 'bin/json2bash')
-rwxr-xr-x | bin/json2bash | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/bin/json2bash b/bin/json2bash deleted file mode 100755 index 347ca93..0000000 --- a/bin/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' |