summaryrefslogtreecommitdiff
path: root/common/scripts/kvm/test-rt-parse.sh
blob: 3e833d5d4227b4f9aeb1647ed76bc03792c76d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

if [ -f ./common/scripts/min_max_avg_parse.py ]
then
    PARSE_SCRIPT=./common/scripts/min_max_avg_parse.py
elif [-f /root/min_max_avg_parse.py ]
then
    PARSE_SCRIPT=/root/min_max_avg_parse.py
fi
for FILE in *.txt
do
    $PARSE_SCRIPT $FILE "Time:" "Seconds"
done