Skip to content

Commit

Permalink
Merge pull request #2563 from bobwilliams/master
Browse files Browse the repository at this point in the history
Adds command line aliases useful for dealing with JSON
  • Loading branch information
robbyrussell committed Mar 23, 2014
2 parents 27965fe + 1ca4e21 commit ffc17b6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions plugins/jsontools/jsontools.plugin.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# JSON Tools
# Adds command line aliases useful for dealing with JSON

if [[ $(whence $JSONTOOLS_METHOD) = "" ]]; then
JSONTOOLS_METHOD=""
fi

if [[ $(whence node) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xnode" ) ]]; then
alias pp_json='node -e "console.log(JSON.stringify(process.argv[1]), null, 4)"'
elif [[ $(whence python) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xpython" ) ]]; then
alias pp_json='python -mjson.tool'
elif [[ $(whence ruby) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xruby" ) ]]; then
alias pp_json='ruby -e "require \"json\"; require \"yaml\"; puts JSON.parse(STDIN.read).to_yaml"'
fi

unset JSONTOOLS_METHOD

0 comments on commit ffc17b6

Please sign in to comment.