Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のファイルによると
画面上の各レコードから最初と 3 番目のフィールドを出力するスクリプト。
各レコードの 2 番目のフィールドだけを file.txt に保存します。
大文字を含む行の 2 番目のフィールドを出力します。
27、紫、恐竜、136 152、ピンク、エレファント、136
27、紫、恐竜、136
152、ピンク、エレファント、136
awk -F, '{print $1,$3}' inputfile.txt awk -F, '{print $2}' inputfile.txt > file.txt awk -F, '/[[:upper:]]/ {print $2}' inputfile.txt
任務頑張ってください。TA がこの投稿を見つけられないことを願っています。