I'm having problems printing just one cell from a .csv file. I was only able to print a single column, but not a single cell.
Here's the command I use to print a column:
BEGIN {FS = ","}
{print $1,$3}
And I execute it using:
cat test.csv | awk -f test.awk
I want to manipulate the .csv file by each cell using bash or awk.
Thank you!