Lines Matching refs:cmd
1219 my ($cmd) = @_;
1222 my $output = `$cmd`;
1230 my ($cmd) = @_;
1233 my $output = `$cmd`;
1259 my ($cmd) = @_;
1264 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1283 my ($cmd) = @_;
1286 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1307 my ($cmd) = @_;
1311 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1324 my $cmd;
1332 $cmd = $VCS_cmds{"blame_file_cmd"};
1333 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1334 @all_commits = vcs_save_commits($cmd);
1353 $cmd = $VCS_cmds{"blame_range_cmd"};
1354 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1355 push(@commits, vcs_save_commits($cmd));
1358 $cmd = $VCS_cmds{"blame_file_cmd"};
1359 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1360 @commits = vcs_save_commits($cmd);
1837 my $cmd = $VCS_cmds{"find_signers_cmd"};
1838 $cmd =~ s/(\$\w+)/$1/eeg; # interpolate $cmd
1840 ($commits, @signers) = vcs_find_signers($cmd);
1871 my $cmd;
1873 $cmd = $VCS_cmds{"find_commit_signers_cmd"};
1874 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
1876 ($commit_count, @commit_signers) = vcs_find_signers($cmd);
1883 my $cmd;
1885 $cmd = $VCS_cmds{"find_commit_signers_cmd"};
1886 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
1888 ($commit_count, @commit_signers) = vcs_find_signers($cmd);
1904 my $cmd;
1906 $cmd = $VCS_cmds{"find_commit_author_cmd"};
1907 $cmd =~ s/(\$\w+)/$1/eeg; #substitute variables in $cmd
1911 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1932 my $cmd = $VCS_cmds{"find_commit_author_cmd"};
1933 $cmd =~ s/(\$\w+)/$1/eeg; #interpolate $cmd
1934 my @author = vcs_find_author($cmd);