Help for this page

Select Code to Download


  1. or download this
    my $spec = ‘*_{process,read}_*’;
    
  2. or download this
    my @use;
    for my $file ( glob $spec )  {
        $file = m/$reg/;
        push @use, $file unless $1 =~ /\+/;
    }
    
  3. or download this
    my @use=grep !/[^+]*?_(?:process|read)_/, glob $spec;
    
  4. or download this
    perldoc -q 'difference between "perl" and "Perl"'