Authored by Rong

auto commit by shell by gr

#!/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
... ...