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:
Simple solution with sed:
sed
sed -n '2,$p'
where 2 is the number of line you wish to read from.
2