Bash Scripting - Text Processing in Scripts
You have a file
Write an awk command to print only the name and city fields.
records.txt with lines like:id,name,age,city 1,Alice,28,NY 2,Bob,35,LA
Write an awk command to print only the name and city fields.
