My CSV file is like this >>
ABC XYZ 111 FRANCE
GGG KKK 222 France
HHH 666 France
France 886 USA
when I run the command
$ awk -F',' '($4 ~ /FRANCE/) { print $4 }' test.csv
it shows me FRANCE only
All I want it to read France , FRANCE , FrAnce and france must be in 4th column,
how can I ignore case sensitivity and read 4th for france?