awk -F'"' '{print $3}'
+
  awk '{print $3}'
 
  awk '{print $4 "|" $5}'
 
  awk '{print $4 "|" $5}'
 
  awk 'BEGIN { FS = "|" } ; { print $10 }'
 
  awk 'BEGIN { FS = "|" } ; { print $10 }'
 
  awk '{total += $1; count++} END { print total/count } END {print count}'
 
  awk '{total += $1; count++} END { print total/count } END {print count}'
Exception encountered, of type "Error"