- or download this
my @files = io('.')->all_files;
$files[0] > io( "/tmp/$files[0]" );
- or download this
my @files = io('.')->all_files;
io( "$files[0]" ) > io( "/tmp/$files[0]" );
- or download this
my $file = io( '.' )->next;
$file > io( "/tmp/$file" );
- or download this
my $tmp = io;
io( '.' )->next > $tmp;