Lines Matching refs:cmd
1221 my ($cmd) = @_;
1224 my $output = `$cmd`;
1232 my ($cmd) = @_;
1235 my $output = `$cmd`;
1261 my ($cmd) = @_;
1266 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1289 my ($cmd) = @_;
1292 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1317 my ($cmd) = @_;
1321 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1334 my $cmd;
1342 $cmd = $VCS_cmds{"blame_file_cmd"};
1343 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1344 @all_commits = vcs_save_commits($cmd);
1363 $cmd = $VCS_cmds{"blame_range_cmd"};
1364 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1365 push(@commits, vcs_save_commits($cmd));
1368 $cmd = $VCS_cmds{"blame_file_cmd"};
1369 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1370 @commits = vcs_save_commits($cmd);
1847 my $cmd = $VCS_cmds{"find_signers_cmd"};
1848 $cmd =~ s/(\$\w+)/$1/eeg; # interpolate $cmd
1850 ($commits, @signers) = vcs_find_signers($cmd);
1881 my $cmd;
1883 $cmd = $VCS_cmds{"find_commit_signers_cmd"};
1884 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
1886 ($commit_count, @commit_signers) = vcs_find_signers($cmd);
1893 my $cmd;
1895 $cmd = $VCS_cmds{"find_commit_signers_cmd"};
1896 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
1898 ($commit_count, @commit_signers) = vcs_find_signers($cmd);
1914 my $cmd;
1916 $cmd = $VCS_cmds{"find_commit_author_cmd"};
1917 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
1921 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1946 my $cmd = $VCS_cmds{"find_commit_author_cmd"};
1947 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1948 my @author = vcs_find_author($cmd);