Hi
I'm not 100% sure what you are trying to achieve.
To print the last field, just print $NF
You probably want to get rid of the quotes, so you could try { last=$NF; gsub( /"/, "", last ); print last }
That will get you the last bit of file 1 but I'm not sure how your file 2 is supposed to...