下列哪个选项不能将标准输出重定向到file文件中?
A: cat /etc/passwd 1>file
B: cat /etc/passwd >file
C: cat /etc/passwd 0>file
D: cat /etc/passwd >>file
A: cat /etc/passwd 1>file
B: cat /etc/passwd >file
C: cat /etc/passwd 0>file
D: cat /etc/passwd >>file
举一反三
- 分屏查看/etc/passwd文件的内容。 A: Cat/passwd|more B: Cat/etc/|more C: Cat/etc/passwd|more D: Cat/etc/passwd
- 把文件/etc/passwd所有含root的行显示出来 A: find root /etc/passwd B: grep root /etc/passwd C: cat /etc/passwd | grep root
- By modifying the file ( ), you can set the file system that will be automatically installed at startup. A: /etc/mtab B: /etc/profile C: /etc/fstab D: /etc/passwd
- 显示/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
- 如果想要使用命令监控到使用useradd命令创建用户时,/etc/passwd文件中的变化应该使用以下哪条命令() A: tail -f /etc/passwd B: cat /etc/passwd C: more /etc/passwd D: tail -F /etc/passwd