Help for this page

Select Code to Download


  1. or download this
    my %hash = map{ chomp; local @_ = split/ /; $_[1] => $_[0]; } <$fh>;
    
  2. or download this
    my %hash = map { chomp; (split / /)[1,0]; } <$fh>;