I have the following awk command followed by a pipe in a shell script. I've been advised using fflush can force immediate piping of data rather than buffering.
awk '{
gsub(/"/,"\\\"", $0);
for(i=7; i<=NF; i++){
if(substr($6,1,6)!="GetRes"){
if(substr($6,1,2)!="C=")
printf $i " " $6...