DataCamp Introduction to shell

All We Need is Data, itself !·2022년 3월 22일
0
$ 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
profile
분명히 처음엔 데린이었는데,, 이제 개린이인가..

0개의 댓글