I have a file with the following content:
"aaa" "aaa bbb" "c cc c" "ddd"
I'm looking for command that will show me specified column.
I try to use:
awk '{print $1}'
But it doesn't work properly if there is a space char in doublequetoes like "c cc c".
Thanks in advance for help.