Help for this page

Select Code to Download


  1. or download this
    use strict; 
    use warnings;
    ...
         push @xlinkpaths, $1 . $op;
    }
    
  2. or download this
    incl -s streamname /./abc/def
       xlink /./abc/def from streamname 
    incl -s streamname /./xyz/qwen/defs/asd
       xlink /./xyzz/qwen/defs/asd from streamname
    
  3. or download this
    incl -s streamname \.\abc/def
       xlink /./abc/def from streamname 
    incl -s streamname \.\xyz/qwen/defs/asd
       xlink /./xyzz/qwen/defs/asd from streamname
    
  4. or download this
    @xlinkpaths = (
     "abc/def/",
     "xyzz/qwen/defs/asd/",
    );
    
  5. or download this
    @xlinkpaths = (
     "abc/def\",
     "xyzz/qwen/defs/asd\",
    );