lib/misc: add cj function

This commit is contained in:
Steve Losh 2010-08-24 14:30:31 -04:00
commit 036ab9aa08

View file

@ -23,6 +23,11 @@ function pj() {
python -mjson.tool python -mjson.tool
} }
## curl JSON
function cj() {
curl -sS $@ | pj
}
## Open current directory ## Open current directory
alias oo='open .' alias oo='open .'