Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
How will you print the login names of all users on a system?
awk –F ':' '(print $1}' /etc/shadow|uniq -u
awk –F ':' '{print $0}' /etc/shadow|uniq
awk –F ':' '{print $1}' /etc/shadow|uniq -u
awk –F ':' '[print $1]' /etc/shadow|uniq
bash –F ':' '{print $1}' /etc/shadow|uniq -u
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!