Help for this page

Select Code to Download


  1. or download this
    opendir(DIR, $Path->{'real'});
    
  2. or download this
    /usr/
    
  3. or download this
    opendir(DIR, "/usr/");
    
  4. or download this
    $Path->{'real'} = "/usr/";
    opendir(DIR, $Path->{'real'});
    
  5. or download this
    $Path->{'real'} =~ /(.*)/;
    $Path->{'real'} = $1;
    opendir(DIR, $Path->{'real'});