Help for this page

Select Code to Download


  1. or download this
        my @cmdarr = $$server{"cmds"}; # <-is this correct
    
  2. or download this
        my @cmdarr = @{$server->{"cmds"}};
    
  3. or download this
        $server->{"cmds"}->[$i]->{status}
    
  4. or download this
        $$server{"cmds"}[$i]{status}