The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use YAML::Syck;
use Storable;

my $yfile = shift(@ARGV) or die "need yaml file";
my $sfile = $yfile . '.stb';
$YAML::Syck::ImplicitUnicode = 1;
my $data = YAML::Syck::LoadFile($yfile);
warn "loaded $data";
store($data, $sfile);