Help for this page

Select Code to Download


  1. or download this
    @files = map { -f $_ ? $_ : () } @ARGV;
    
  2. or download this
    @files = grep { -f $_ } @ARGV;
    
  3. or download this
        while ( <> ) {
            chomp;
            push @files, $_;
        }
    
  4. or download this
        chomp( @files = <> );
    
  5. or download this
        chomp( @files = @ARGV ? grep { -f $_ } @ARGV : <> );