Which pipeline extracts usernames from the colon-separated /etc/passwd file?
/etc/passwd
cut -d ':' -f 1 /etc/passwd
cut -d ' ' -f 1 /etc/passwd
df -f 1 /etc/passwd
cut -d ':' -f 3 /etc/passwd