Skip to content

Instantly share code, notes, and snippets.

@chrismytton
Created October 19, 2016 15:32
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chrismytton/abb68121e90eea778c86ecac70f417d3 to your computer and use it in GitHub Desktop.
Save chrismytton/abb68121e90eea778c86ecac70f417d3 to your computer and use it in GitHub Desktop.
Shell function to convert YAML to JSON
yaml2json () {
ruby -r yaml -r json -e 'puts YAML.load($stdin.read).to_json'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment