Help for this page

Select Code to Download


  1. or download this
    my @cmds = ($cmd1, $cmd2, $cmd3, $cmd4);
    
  2. or download this
    # Create all at once
    my @cmds = qw(This Is a test);
    ...
    for (@cmds) {
        print "$_\n";
    }