- or download this
my $xlink,@xlinkpaths;
- or download this
perl -Mstrict -ce 'my $xlink,@xlinkpaths'
Global symbol "@xlinkpaths" requires explicit package name at -e line
+1.
...
perl -Mstrict -ce 'my($xlink,@xlinkpaths)'
-e syntax OK
- or download this
foreach $xlink (@xlinks) {
@xlinkpaths =
}
- or download this
foreach $xlink (@xlinks) {
push @xlinkpaths, $xlink =~ m{incl -s streamname /./(.+)};
}
- or download this
foreach $xlink (@xlinks) {
$xlink =~ m{incl -s streamname /./(.+)};
push @xlinkpaths, $1;
}
- or download this
push @xlinkpaths, $1 if $1;
- or download this
unshift @exclpaths, @xlinkpaths;
- or download this
use strict;
use warnings;
...
"btrtbrtb/gbrgbrg/rttty/",
);
unshift @exclpaths, @xlinkpaths;