- or download this
$file !~ m/^[\w-]+(\.[\w-]+)*$/
- or download this
cns061206
- or download this
sub zip {
(my $cmd, my $dir) = @_[0,1];
...
}
}
- or download this
foreach my $file (glob($dir . '/*')) {
- or download this
foreach my $file (glob($dir . '/*.gz'))
- or download this
my @list = glob($dir . '/*');
foreach my $file (@list) {
- or download this
my @list = glob($dir . '/*.gz');
foreach my $file (@list) {