要从某个文件中找到含有ls字样的行,应该如何操作?
A: find / -name ls
B: grep "ls" /etc/passwd
C: grep / -name " ls"
D: whereis ls
A: find / -name ls
B: grep "ls" /etc/passwd
C: grep / -name " ls"
D: whereis ls
举一反三
- 13.要从某个文件中找到含有ls字样的行,应该如何操作?得分/总分 A: whereis ls B: grep / -name " ls" C: find / -name ls D: grep "ls" /etc/passwd
- 要从某个文件中找到含有ls字样的行,应该如何操作? A: find / -name ls B: grep "ls" /etc/passwd C: grep / -name "ls" D: whereisls
- 要从某个文件中找到含有ls字样的行,应该如何操作? A: find / -name ls B: grep "ls" /etc/passwd C: grep / -name " ls" D: whereis ls
- 要从某个文件中找到含有ls字样的行,应该如何操作?
- 如果你想列出当前目录以及子目录下所有扩展名为.txt的文件,下面()命令可以实现。 A: ls *.txt B: find -name ".txt" C: ls -d .txt D: grep / .txt