I want to do the following, read line by line of a file and use the value per line as params
FILE=\"cat test\" echo \"$FILE\" | \\ while read CMD; do echo $C
while read CMD; do echo $CMD done << EOF data line 1 data line 2 .. EOF