Help for this page

Select Code to Download


  1. or download this
    my %menus = (
      '1' => {
    ...
        'ITEM'    => 'List and Kill Print Jobs',
        'ACTION'  => sub { $PrintSubmenu->('2') },
        . . .
    
  2. or download this
        $menu->{$MenuItem}->{'ACTION'}->();
    
  3. or download this
    my %menus = (
        '1' => {
    ...
            'ACTION'  => $RunCMD->('quit'),
        },
    );