找出/etc/passwd文件里带“root”的行,使用哪一条命令?(
举一反三
- 【单选题】使用 grep 命令将 /etc/passwd 中包含 root 单词的行显示出来 A. grep * /etc/passwd root B. grep /etc/passwd root C. find root /etc/passwd D. grep root /etc/passwd
- 把文件/etc/passwd所有含root的行显示出来 A: find root /etc/passwd B: grep root /etc/passwd C: cat /etc/passwd | grep root
- 显示/etc/passwd文件中的带有root字样的行,并存储到一个名为root.txt的文件中,下面那些命令是正确的? A: cat /etc/passwd|grep root>root.txt B: grep root /etc/passwd>root.txt C: grep root /etc/passwd 1>root.txt D: cat /etc/passwd|grep "root">root.txt
- 【单选题】在/etc/passwd文件中查找root用户信息,命令正确的是() A. grep “root” /etc/passwd B. grep “^root” /etc/passwd C. grep “ D. grep “[^root]” /etc/passwd
- 显示/etc/passwd文件中的带有root字样的行,并存储到一个名为root.txt的文件中,下面那些命令是正确的? A: cat /etc/passwd|grep root>root.txt B: grep root /etc/passwd>root.txt C: cat /etc/passwd|grep "root">root.txt D: grep root /etc/passwd 1>root.txt