Sophie

Sophie

distrib > Mageia > 3 > i586 > by-pkgid > c55a660f6d89757a57c88942c5eba497 > files > 24

perl-IO-All-0.460.0-2.mga3.noarch.rpm

#!/usr/bin/perl

# create-cat-to.pl
# cat to a file that can be created.

use strict;
use warnings;

use IO::All;

my $filename = shift(@ARGV);

# Create a file called $filename, including all leading components.
io('-') > io->file($filename)->assert;