Help for this page

Select Code to Download


  1. or download this
    #...
    require "/etc/myname.cfg";
    
    ..
    
  2. or download this
    # /etc/myscript.cfg
    
    ...
    
      },
    }
    
  3. or download this
    package Scriptname;
    require "/etc/scriptname.cfg"
    
  4. or download this
    package Scriptname;
    $somehash=> {
    ...
              };
       }
    };
    
  5. or download this
    my $sub=$somehash->{'Something'}->{'Sub'};
    &$sub() if defined($sub);