Json_to_Yaml
Json to YAML with ruby
ruby -ryaml -rjson -e 'puts YAML.dump(JSON.parse(STDIN.read))' < sample.json > sample.yaml
-ryaml -rjson: yaml / json ライブラリを requireJSON.parse(STDIN.read): 標準入力から JSON を読み込んでパースYAML.dump: Rubyオブジェクトを YAML に変換< sample.json > sample.yaml: 変換元・出力先を指定