grep多个目录抛出错误“是一个目录”

时间:2017-05-05 10:16:09

标签: awk sed grep

我必须读取由JR_ *突出显示的每个操作所花费的时间,时间是来自最新的10个jtl文件的t =“”,并计算平均值。我正在尝试做一个shell脚本,它将执行这个特定的操作,计算最后10次运行的特定操作的平均值,(读取最新的10个jtl文件)

<sample t="5203" it="0" lt="0" ts="1493818151051" s="true" lb="JR_READ" rc="200" rm="OK" tn="Thread Group 1-2" dt="text" by="0" ng="2" na="2"/>
<sample t="3584" it="0" lt="0" ts="1493818151660" s="true" lb="JR_WRITE" rc="200" rm="OK" tn="Thread Group 1-2" dt="text" by="0" ng="2" na="2"/>
<sample t="61280" it="0" lt="0" ts="1493818152265" s="true" lb="JR_SAVE" rc="200" rm="OK" tn="Thread Group 1-2" dt="text" by="0" ng="2" na="2"/>
<sample t="129935" it="0" lt="0" ts="1493818152870" s="true" lb="JR_DELETE" rc="200" rm="OK" tn="Thread Group 1-2" dt="text" by="0" ng="2" na="2"/>



 #!/bin/sh
    cd /tests/unit/
    fNames=$(ls -t | grep -i jenkins-TEST_UNIT | head -n 10)
    #printf "%s\n" "${fNames[@]}"
    ## now loop through the above array
    for i in "${fNames[@]}"
    do
       #echo "$i"
      grep -I "JR_READ" $i/Summary.jtl | awk -F '"' '{print $2}'
       # or do whatever with individual element of the array
    done

我只需要一个文件的“时间”,其余的目录我得到这个错误,原因可能是什么? grep仅适用于一个文件。我想从10个文件中读取这个特定值并计算它的平均值。

grep: jenkins-TEST_UNIT12: Is a directory
grep: jenkins-TEST_UNIT9: Is a directory
grep: jenkins-TEST_UNIT8: Is a directory
grep: jenkins-TEST_UNIT7: Is a directory
grep: jenkins-TEST_UNIT6: Is a directory
grep: jenkins-TEST_UNIT5: Is a directory
grep: jenkins-TEST_UNIT4: Is a directory
grep: jenkins-TEST_UNIT3: Is a directory
grep: jenkins-TEST_UNIT2: Is a directory
60665

0 个答案:

没有答案