Help for this page

Select Code to Download


  1. or download this
    system($_) for @command_list;
    
  2. or download this
    my @cmd_list;
    push @cmd_list, qq(p4 sync -k "$options{v}");
    ...
    # ... etc.
    
    system $_ foreach @cmd_list;
    
  3. or download this
    system qq(p4 sync -k "$options{v}");
    system qq(p4 -x "$options{f}" delete) if (exists $options{f});
    # ... etc.