Help for this page

Select Code to Download


  1. or download this
    my $xlink,@xlinkpaths;
    
  2. 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
    
  3. or download this
        foreach $xlink (@xlinks) { 
             @xlinkpaths =  
        }
    
  4. or download this
        foreach $xlink (@xlinks) { 
             push @xlinkpaths, $xlink =~ m{incl -s streamname /./(.+)}; 
        }
    
  5. or download this
        foreach $xlink (@xlinks) {
             $xlink =~ m{incl -s streamname /./(.+)};
             push @xlinkpaths, $1;
        }
    
  6. or download this
             push @xlinkpaths, $1 if $1;
    
  7. or download this
    unshift @exclpaths, @xlinkpaths;
    
  8. or download this
    use strict; 
    use warnings;
    ...
        "btrtbrtb/gbrgbrg/rttty/",
     );
    unshift @exclpaths, @xlinkpaths;