LoginSignup
3
2

More than 5 years have passed since last update.

jsonを標準入力で受け取って見やすいように整形して表示するワンライナー

Last updated at Posted at 2016-06-28

curlなどで返ってきたjsonを見やすいように整形し、標準入力に出力する

php

$ echo '{"some":"json"}' | php -r 'var_dump(json_decode(fgets(STDIN)));'
object(stdClass)#1 (1) {
  ["some"]=>
  string(4) "json"
}

perl

echo '{"some":"json"}' | perl -MJSON -E 'say to_json decode_json(<>), { pretty => 1 }'
{
   "some" : "json"
}

OSXではデフォルトでJSONライブラリは入っていない

# install
$ cpan JSON
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2