==============================================================================
I am attempting to replace the following table response map analysis query
==============================================================================
command cmd more Table_Rtsp.csv.
analyze
query (mapped/Tabular/diversifEye_RTSP_stats/table/row/Entity_Name)[1]
analyze
query (mapped/Tabular/diversifEye_RTSP_stats/table/row/Entity_Name)[2]
analyze
query (mapped/Tabular/diversifEye_RTSP_stats/table/row/Entity_Name)[3]
....
analyze
query (mapped/Tabular/diversifEye_RTSP_stats/table/row/Entity_Name)[36]
=========================================================================
with the following tcl {statement}
=========================================================================
command cmd more Table_Rtsp.csv.
analyze
query [tcl {for {set i 0} {$i < 36} {incr i} {(mapped/Tabular/diversifEye_RTSP_stats/table/row/Entity_Name)[$i]}}]
==========================================================================================================
I have attempted a few syntax substitutions, however not sure if I am going in the right direction or am I totally lost and wasting time? Is there an easier way to query values for analysis from a CSV? Can you help?
==============================================================================================================