Help for this page

Select Code to Download


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