Help for this page

Select Code to Download


  1. or download this
        % test.pl
        ca foo->bar
    ...
        $VAR1 = {
              'foo' => 'bar'
            };
    
  2. or download this
        if ($in =~ /^(\w{2})\s+(\w+)->(\w+)$/) {
            my($command, $key, $value) = ($1, $2, $3);
            $aliases{$key} = $value;
        }