Authored by Rong

auto commit by shell by gr

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