You've already forked postgres_exporter
mirror of
https://github.com/prometheus-community/postgres_exporter.git
synced 2025-08-09 15:42:47 +03:00
13 lines
209 B
Bash
Executable File
13 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
# Concatenate a list of coverage reports
|
|
# Usage: concatenate_coverage <out> [[test] ...]
|
|
|
|
output_file=$1
|
|
shift
|
|
cat $1 > $output_file
|
|
shift
|
|
|
|
for f in $@ ; do
|
|
tail -n +2 $f >> $output_file
|
|
done
|