Help for this page

Select Code to Download


  1. or download this
    if ($current_input =~ /^\s*ca\s+(\w+)\s*->\s*(\w+)\s*$/) {
        my ( $key, $value ) = ($1, $2);
        $aliases{$key} = $value;
    }
    
  2. or download this
    foreach my $key (keys $aliases) {
        print "\$aliases{$key} = $alias{$key}\n";
    }