Which of the following commands prints a list of usernames (first column) and their primary group (fourth column) from the /etc/passwd file?
Which of the following commands prints a list of usernames (first column) and their primary group (fourth column) from the /etc/passwd file?A . fmt -f 1, 4 /etc/passwdB . split -c 1, 4 /etc/passwdC . cut -d: -f 1, 4 /etc/passwdD . paste -f 1, 4 /etc/passwdView AnswerAnswer: C