awk print column code example
Example 1: awk print second
awk -F '"' '{print $2}' your_input_file
Example 2: awk print nth column
awk '{print $N}' # replace N with the column you want
awk -F '"' '{print $2}' your_input_file
awk '{print $N}' # replace N with the column you want