2种方法:#方法1:awk -F, '{print $1","$4","$7}' no1/test.csv no2/test.csv no3/test.csv > newtext.csv#方法2:cat no1/test.csv no2/test.csv no3/test.csv | cut -d, -f1,4,7 > newtext.csv