-
Notifications
You must be signed in to change notification settings - Fork 40
Closed
Description
#! /usr/bin/env perl
#
# Short description for test-YAML-XS.pl
#
# Version 0.0.1
# Copyright (C) 2025 Shlomi Fish < https://www.shlomifish.org/ >
#
# Licensed under the terms of the MIT license.
use strict;
use warnings;
use 5.014;
use autodie;
use Carp qw/ confess /;
use Getopt::Long qw/ GetOptions /;
use Path::Tiny qw/ cwd path tempdir tempfile /;
use YAML::XS qw/ LoadFile /;
sub myls
{
my ($stage) = @_;
print "$stage\n";
system("set -x; ls -lA");
return;
}
sub run
{
myls("before");
eval { LoadFile(">clobber.yaml"); };
myls("after");
exit(0);
my $output_fn;
GetOptions( "output|o=s" => \$output_fn, )
or die "errror in cmdline args: $!";
exit(0);
}
run();
1;
__END__
=encoding UTF-8
=head1 NAME
=head1 VERSION
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2007 by Shlomi Fish.
This is free software, licensed under:
The MIT (X11) License
=cut
[shlomif@telaviv1 yaml-xs]$ pwd
/home/shlomif/tmp/yaml-xs
[shlomif@telaviv1 yaml-xs]$ perl ~/test-YAML-XS.pl
before
+ ls -lA
total 0
Filehandle $IN opened only for output at /usr/lib64/perl5/vendor_perl/YAML/XS.pm line 60.
Use of uninitialized value in subroutine entry at /usr/lib64/perl5/vendor_perl/YAML/XS.pm line 60.
Warning: unable to close filehandle $IN properly: Bad file descriptor at /usr/lib64/perl5/vendor_perl/YAML/XS.pm line 60.
after
+ ls -lA
total 0
-rw-r--r-- 1 shlomif shlomif 0 Jan 29 10:13 clobber.yaml
[shlomif@telaviv1 yaml-xs]$
perlpunk
Metadata
Metadata
Assignees
Labels
No labels