This is the first time I try the linux programming... I have a csv file made like this
nothing; V;V;V;F;V;F;V;V;
nothing; V;V;V;F;V;F;V;V;
the columns are fixed but the rows can be increased in future.
I want to read the value of each row and save it into a variable, which I need to investigate for future operations.
Right now the problem is how to open and store into a variable the value of each cell of the csv.
I've tried with the command
Folder_path=file.csv
For /f "skip=1" in ($Folder_path)
but it gives me an error.
Furthermore I think a while loop should be better than the for but honestly I'ven't understood how to construct it.