mirror of
https://github.com/prometheus-community/postgres_exporter
synced 2025-02-17 11:07:15 +00: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
|