哪个命令会在 /etc/passwd 中搜索包含 root 的行?
/etc/passwd
root
less root /etc/passwd
grep /etc/passwd "root"
cat "root" /etc/passwd
grep "root" /etc/passwd