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
Reference
この問題について(DataCamp Introduction to shell), 我々は、より多くの情報をここで見つけました https://velog.io/@jee-9/DataCamp-Introduction-to-shellテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol