Help for this page

Select Code to Download


  1. or download this
    %files_data = { 
                  './GetOpt.pm' => {
    ...
                                         }
                              }
                        };
    
  2. or download this
                
        %process_data = (
    
    ...
                               'name' => 'file2'
                             }
                );
    
  3. or download this
        
        %hash = (
                'file1' => {
    ...
                    './GetOpt.pm' => 1,
            }
        );
    
  4. or download this
        file1 => file2 => ./GetOpt.pm
    
  5. or download this
        file1 => {
            ./GetOpt.pm,
            file2 => ./GetOpt.pm
        }
    
  6. or download this
    create_proc_tree(\%process_data,\%files_data);
    
    ...
        }
        print Dumper(\%hash); # Printing for debug
    }
    
  7. or download this
    use Data::Dumper;
    $abc = "Mouse=>Jerry, Cat=>Tom, Dog=>Spike";
    my %hash = eval( "( $abc )" );
    print Dumper(\%hash);