summaryrefslogtreecommitdiffstats
path: root/fbench/util/resultfilter.pl
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-09-16 15:39:40 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-09-16 15:39:40 +0000
commit7791ec6a046a25a2af92024229ce9dfcbc1430bf (patch)
tree757ca04e51f4618041094c6347ee6b64f1a76475 /fbench/util/resultfilter.pl
parentcdcd2970ad451bbb944a6bc564f6b0e9a88168b8 (diff)
Use bash instead of perl
Diffstat (limited to 'fbench/util/resultfilter.pl')
-rwxr-xr-xfbench/util/resultfilter.pl14
1 files changed, 0 insertions, 14 deletions
diff --git a/fbench/util/resultfilter.pl b/fbench/util/resultfilter.pl
deleted file mode 100755
index f66aed42dc3..00000000000
--- a/fbench/util/resultfilter.pl
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/perl
-# 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.
-
-while(<>) {
- chomp();
- if(/:\s*([-+]?[\d.]+)/) {
- print $1, " ";
- }
-}
-print "\n";