getJmxTcName.sh 186 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 #!/bin/bash path=$1 if [[ ! -z $path && -f $path ]];then cat $path | grep -e ".*testname=\"tc_.*enabled=\"true\"" | awk -F 'testname=\"' '{print $2}' | awk -F '\" ' '{print $1}' fi