CompTIA Linux+ XK0-006 (V8) Practice Question

While auditing user accounts on a production server, you need a quick command that lists only those entries in /etc/passwd whose numeric user ID (UID) is 1000 or higher (the typical range for regular interactive users). The command must print just the login name and its UID in the form username:UID, one match per line. Which awk one-liner accomplishes this goal?

  • awk '$3 >= 1000 {print $1 ":" $3}' /etc/passwd

  • awk -F':' '$4 >= 1000 {print $1 ":" $4}' /etc/passwd

  • awk -F':' '$3 >= 1000 {print $1 ":" $3}' /etc/passwd

  • awk -F':' '$3 >= 1000 {print $0}' /etc/passwd

CompTIA Linux+ XK0-006 (V8)
System Management
Your Score:
Settings & Objectives
Random Mixed
Questions are selected randomly from all chosen topics, with a preference for those you haven’t seen before. You may see several questions from the same objective or domain in a row.
Rotate by Objective
Questions cycle through each objective or domain in turn, helping you avoid long streaks of questions from the same area. You may see some repeat questions, but the distribution will be more balanced across topics.

Check or uncheck an objective to set which questions you will receive.

Bash, the Crucial Exams Chat Bot
AI Bot