Help for this page

Select Code to Download


  1. or download this
    my %hash=(a=>1,b=>2);
    system("echo", $hash{a}) == 0 or die;
    
  2. or download this
    use File::Copy;
    my %hash=(a=>1,b=>2);
    copy($hash{a}, $hash{b}) or die $!;