fabiopelosin / act

MIT License
55 stars 5 forks source link

Support prettifying JSON (and perhaps other data types) #2

Closed kylef closed 10 years ago

kylef commented 10 years ago

Example usage:

$ echo '{"name":"Kyle","url":"https://github.com/kylef"}' > kylef.json
$ act --prettyify kylef.json
{
    "name": "Kyle",
    "url":"https://github.com/kylef"
}