Help for this page

Select Code to Download


  1. or download this
      $hash{subdir 1}
      $hash{subdir 2}{subsubdir 2.1}
    ...
      $hash{subdir 3}{subsubdir 3.1}{subsubsubdir 3.1.1}
      $hash{subdir 3}{subsubdir 3.1}{subsubsubdir 3.1.2}
      $hash{subdir 3}{subsubdir 3.1}{subsubsubdir 3.1.3}
    
  2. or download this
      @parts=split /\//,$dirname;
      %hash{ @parts } = (); ## this doesn't work, of course, 
                            ## just an example of the idea
    
  3. or download this
      $hash{foo}=1;
      $hash{foo}{bar}=2;
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    $hash{foo}[0]{bar}[0]{bink}=[undef,4];
    
    print Dumper \%hash;