#!/usr/bin/env perl
use strict;
use warnings;
use YAML::XS;

local $/ = undef;

my %param = %{ YAML::XS::Load( <STDIN> ) };
exec $param{argv}->[0];
exit 1;
