customers.txt のカンマ区切りフィールドは ID,Name,Age,Email です。Name フィールドを抽出するコマンドはどれですか?
customers.txt
ID,Name,Age,Email
Name
cut -d ':' -f 2 customers.txt
cut -d ',' -f 2 customers.txt
cut -c 2 customers.txt
cut -d ',' -f 1 customers.txt