summaryrefslogtreecommitdiffstats
path: root/fbench/util/resultfilter.sh
blob: d6881f12a9da278e980a7ae768728ac87e8a85b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/bash
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

# This script converts an fbench summary report read from stdin to a
# single line containing only the numerical values written to
# stdout.

sed -n "s/.*: *\([0-9.][0-9.]*\).*/\1/p" | tr '\n' ' '
echo