6 lines
81 B
Bash
6 lines
81 B
Bash
|
alias jcurl=jsoncurl
|
||
|
function jsoncurl()
|
||
|
{
|
||
|
curl -s $1 |python -m json.tool
|
||
|
}
|