Skip to content

Instantly share code, notes, and snippets.

@ingydotnet
Last active July 23, 2020 04:50
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ingydotnet/6833981 to your computer and use it in GitHub Desktop.
Save ingydotnet/6833981 to your computer and use it in GitHub Desktop.
load-yaml-dump-json A script to test YAML load against many implementations
#!/bin/bash
# Usage:
#
# cat file.yml | load-yaml-dump-json
# ./load-yaml-dump-json # enter data and ctl-d when finished
yaml=`cat`
echo == Perl
echo YAML.pm:
echo "$yaml" | perl -0E 'use YAML; use JSON; say encode_json Load <>'
echo YAML::XS:
echo "$yaml" | perl -0E 'use YAML::XS; use JSON; say encode_json Load <>'
echo YAML::Syck:
echo "$yaml" | perl -0E 'use YAML::Syck; use JSON; say encode_json Load <>'
echo YAML::Tiny:
echo "$yaml" | perl -0E 'use YAML::Tiny; use JSON; say encode_json Load <>'
echo
echo == Python==
echo PyYaml:
echo "$yaml" | python -c 'import sys, yaml, json; print json.dumps(yaml.load(sys.stdin.read()))'
echo
echo == Ruby==
echo Psych:
echo "$yaml" | ruby -e 'require "yaml"; require "json"; puts JSON.dump(YAML.load(STDIN.read))'
echo
echo == Node.js ==
echo js-node:
echo "$yaml" | node -e 'f = require("fs"); y = require("js-yaml"); console.log(JSON.stringify(y.load(f.readFileSync("/dev/stdin").toString())))'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment