diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-01-02 22:50:59 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-01-02 22:50:59 +0100 |
commit | 307c4257f2b627de8bb5e829c3ab9b1a4039c7f1 (patch) | |
tree | f43ed0d57372c701096adf432f05864c992d4d69 /.functions | |
parent | f62dfea69705ce734d0d8cc8af6c072a0b06fffb (diff) | |
download | dotfiles-307c4257f2b627de8bb5e829c3ab9b1a4039c7f1.tar.gz dotfiles-307c4257f2b627de8bb5e829c3ab9b1a4039c7f1.tar.bz2 dotfiles-307c4257f2b627de8bb5e829c3ab9b1a4039c7f1.zip |
Better `json` function
Ref. 9b0af44766d2a2cc61ae0142ac3ec9f0bed75674
Diffstat (limited to '.functions')
-rw-r--r-- | .functions | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -21,9 +21,7 @@ function httpcompression() { function json() { if [ -p /dev/stdin ]; then # piping, e.g. `echo '{"foo":42}' | json` - while read data; do - python -mjson.tool <<< "$data" | pygmentize -l javascript - done + python -mjson.tool | pygmentize -l javascript else # e.g. `json '{"foo":42}'` python -mjson.tool <<< "$*" | pygmentize -l javascript |