Lines Matching refs:cmd
1576 my ($cmd) = @_;
1579 my $output = `$cmd`;
1587 my ($cmd) = @_;
1590 my $output = `$cmd`;
1616 my ($cmd, $file) = @_;
1623 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1655 my ($cmd) = @_;
1658 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1683 my ($cmd) = @_;
1687 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1700 my $cmd;
1708 $cmd = $VCS_cmds{"blame_file_cmd"};
1709 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1710 @all_commits = vcs_save_commits($cmd);
1729 $cmd = $VCS_cmds{"blame_range_cmd"};
1730 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1731 push(@commits, vcs_save_commits($cmd));
1734 $cmd = $VCS_cmds{"blame_file_cmd"};
1735 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1736 @commits = vcs_save_commits($cmd);
1782 my $cmd;
1784 $cmd = $VCS_cmds{"find_commit_signers_cmd"};
1785 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
1787 …($commit_count, $commit_signers_ref, $commit_authors_ref, $stats_ref) = vcs_find_signers($cmd, "");
2246 my $cmd = $VCS_cmds{"find_signers_cmd"};
2247 $cmd =~ s/(\$\w+)/$1/eeg; # interpolate $cmd
2249 ($commits, $signers_ref, $authors_ref, $stats_ref) = vcs_find_signers($cmd, $file);
2330 my $cmd;
2332 $cmd = $VCS_cmds{"find_commit_signers_cmd"};
2333 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
2335 …($commit_count, $commit_signers_ref, $commit_authors_ref, $stats_ref) = vcs_find_signers($cmd, $fi…
2348 my $cmd;
2350 $cmd = $VCS_cmds{"find_commit_signers_cmd"};
2351 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
2353 …($commit_count, $commit_signers_ref, $commit_authors_ref, $stats_ref) = vcs_find_signers($cmd, $fi…
2371 my $cmd;
2373 $cmd = $VCS_cmds{"find_commit_author_cmd"};
2374 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
2378 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
2403 my $cmd = $VCS_cmds{"find_commit_author_cmd"};
2404 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
2405 my @author = vcs_find_author($cmd);
2440 my $cmd = $VCS_cmds{"file_exists_cmd"};
2441 $cmd =~ s/(\$\w+)/$1/eeg; # interpolate $cmd
2442 $cmd .= " 2>&1";
2443 $exists = &{$VCS_cmds{"execute_cmd"}}($cmd);
2458 my $cmd = $VCS_cmds{"list_files_cmd"};
2459 $cmd =~ s/(\$\w+)/$1/eeg; # interpolate $cmd
2460 @lsfiles = &{$VCS_cmds{"execute_cmd"}}($cmd);