Lines Matching refs:command

385         my $command = "svn info $escapedDir | grep Revision:";
386 $command = "LC_ALL=C $command" if !isWindows();
387 my $svnInfo = `$command`;
390 my $command = "git log --grep=\"git-svn-id: \" -n 1 | grep git-svn-id:";
391 $command = "LC_ALL=C $command" if !isWindows();
392 $command = "cd $dir && $command";
393 my $gitLog = `$command`;
411 my $command = "svn info $escapedRelativePath";
412 $command = "LC_ALL=C $command" if !isWindows();
413 $svnInfo = `$command`;
415 my $command = "git svn info $relativePath";
416 $command = "LC_ALL=C $command" if !isWindows();
417 $svnInfo = `$command`;
591 # Read the rest of the svn command output to avoid a broken pipe warning.
712 # The "git diff" command includes a line of the form "Binary files
1233 # The "svn diff" command neither inserts newline characters between property values
1509 # this subroutine because the diff(1) command is greedy when matching
1696 # Apply the given patch using the patch(1) command.
1711 # patch command gleans the actual file to patch
1718 # patch command. The subroutine passes the -p0 option
1858 print STDERR " OR pass --name= on the command line\n";
1880 print STDERR " OR pass --email= on the command line\n";
2029 # and result size, then a series of commands. Each command is either
2031 # command. Commands are applied sequentially to generate the result.
2033 # A copy-from-old-version command encodes an offset and size to copy
2034 # from in subsequent bits, while a copy-from-delta command consists only
2107 my $command = "git svn find-rev r" . $svnRevision;
2108 $command = "LC_ALL=C $command" if !isWindows();
2109 my $gitHash = `$command`;
2122 my $command;
2136 $command = "git diff --name-status $firstCommit..$lastCommit";
2138 $command = "svn diff --summarize -r $firstRevision:$lastRevision";
2143 if ($command) {
2144 my $diffOutput = `$command`;