Help for this page

Select Code to Download


  1. or download this
    %command_list = 
      qw(
    ...
           help          help()                        
           log           log_status()
      );
    
  2. or download this
    %log =
      qw(start   start_logs()
         stop    stop_logs()
        );
    }
    
  3. or download this
    $command = <STDIN>; # assume $command="log start"
       @cl =split / /,$command;
    ...
       
       eval $command_action; die "\n" if $@;
    }