I have a question related to bash operating on comma-separated value files (.csv) saved with spaces as the selected separator.
As an example I'll put small .csv file here:
A B C D
1 a b c d
2 e f g h
3 i j k l
4 m n o p
And here is my question: Is that possible in bash to read specific value for example from cell C4?
Tried to find any topic with similar problem but cannot it.
Thanks in advance!