I am asking Python to print the minimum number from a column of CSV data, but the top row is the column number, and I don\'t want Python to take the top row into account. Ho
I would use tail to get rid of the unwanted first line:
tail -n +2 $INFIL | whatever_script.py