fish/functions/pj.fish @ c29a6ab95e91

A bit more remote stuff
author Steve Losh <steve@stevelosh.com>
date Fri, 17 Jan 2020 22:09:22 -0500
parents 957e7c0065e9
children (none)
function pj -d "Prettify JSON"
    if test "$argv[1]" = "-C"
        # no color
        python -m json.tool
    else
        python -m json.tool | pygmentize -l json
    end
end