以下选项中,_______的功能是在文件file中查找显示所有以"*"开头的行。
A: find \* file
B: wc -l * <; file
C: grep -n * file
D: grep '^\*' test.txt
A: find \* file
B: wc -l * <; file
C: grep -n * file
D: grep '^\*' test.txt
举一反三
- 已知当前目录中只有三个文件file1 file2 和file3,命令()能够从这些文件中查找包含字符串hello的行。 A: grep hello file1 file2 file3 B: grep hello file* C: grep hello file D: grep hello *
- 关于grep命令,下列用法正确的是()。 A: grepLinuxfile B: grepLinuxOSfile C: grep‘Linux’file D: grep“LinuxOS”file
- 以长格式列出当前用户家目录下文件名以file开头,跟着2到5之间的一个数字的所有文件(提示,结合ls 命令) A: ls -l ~/file[2-5]* B: find ~ -name "file[2-5]*" C: find ~ -name "file[2-5]*" -exec ls -l {} \; D: ls -a ~/file[2-5]* E: ls -l ~/file[2-5] F: find ~ -name "file[2-5]?"
- 以下哪个命令可以搜索文件中特定字符串的内容() A: find B: file C: locate D: grep
- 以长格式列出当前用户家目录下文件名以file开头,跟着2到5之间的一个数字的所有文件(提示,结合ls 命令) A: ls -l ~/file[2-5]* B: find ~ -name "file[2-5]*" C: find ~ -name "file[2-5]*" -exec ls -l {} ; D: ls -a ~/file[2-5]* E: ls -l ~/file[2-5] F: find ~ -name "file[2-5]?"