Help for this page

Select Code to Download


  1. or download this
    for my $i ( keys %{ $config->{item} } ) 
    {
        print $config->{item}->{$i}->{id}, ": ";
        print $config->{item}->{$i}->{destination_dir}, "\n";
    }
    
  2. or download this
    for my $i (sort { $config->{item}->{$a}->{id} <=> $config->{item}->{$b
    +}->{id} } keys %{ $config->{item} } ) 
    {
        print $config->{item}->{$i}->{id}, ": ";
        print $config->{item}->{$i}->{destination_dir}, "\n";
    }