DataCamp Introduction to shell

430 ワード

$ head -n 5 seasonal/winter.csv

cut


select columns 2 through 5 and columns 8, using comma as the separator
$ cut -f 2-5,8 -d , values.csv
$ wc -l [file name] *

for-echo

$ for filename in seasonal/*.csv; do echo $filename; done