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