The comma-separated fields in customers.txt are ID,Name,Age,Email. Which command extracts the Name field?
customers.txt
ID,Name,Age,Email
Name
cut -d ':' -f 2 customers.txt
cut -c 2 customers.txt
cut -d ',' -f 2 customers.txt
cut -d ',' -f 1 customers.txt