Skip to content

Instantly share code, notes, and snippets.

@aduitsis
Last active August 29, 2015 14:04
Show Gist options
  • Save aduitsis/48d68a4f29780afefea7 to your computer and use it in GitHub Desktop.
Save aduitsis/48d68a4f29780afefea7 to your computer and use it in GitHub Desktop.
validate YAML
#!/usr/bin/perl -w
use strict;
use warnings;
use YAML;
use Data::Dumper;
my $slurp = do { local $/ ; <> };
my $data = Load( $slurp ) ;
print Dumper( $data );
print $slurp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment