I would like know how I can read each line of a csv file from the second line to the end of file in a bash script.
csv
I know how to read a file in bash:
There are many solutions to this. One of my favorite is:
(head -2 > /dev/null; whatever_you_want_to_do) < file.txt
You can also use tail to skip the lines you want:
tail
tail -n +2 file.txt | whatever_you_want_to_do