Lines Matching refs:output
1225 my $output = `${git_command} ls-files -- $filename 2>/dev/null`;
1226 my $count = $output =~ tr/\n//;
1227 return $count eq 1 && $output =~ m{^${filename}$};
1235 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1236 $output =~ s/^\s*//gm;
1237 my @lines = split("\n", $output);
2342 my $output = '';
2345 $output .= RED;
2347 $output .= YELLOW;
2349 $output .= GREEN;
2352 $output .= $prefix . $level . ':';
2354 $output .= BLUE if ($color);
2355 $output .= "$type:";
2357 $output .= RESET if ($color);
2358 $output .= ' ' . $msg . "\n";
2361 my @lines = split("\n", $output, -1);
2363 $output = join("\n", @lines);
2367 $output = (split('\n', $output))[0] . "\n";
2372 $output .= $verbose_messages{$type} . "\n\n";
2376 push(our @report, $output);