How to extract one column of a csv file November 16, 2022 by Tarik You could use awk for this. Change ‘$2’ to the nth column you want. awk -F "\"*,\"*" '{print $2}' textfile.csv