在Linux下,grep -e
命令用于在文件中搜索指定的模式,它允許指定多個模式進行搜索。
基本語法如下:
grep -e pattern1 -e pattern2 file
其中,pattern1
和pattern2
是要搜索的模式,file
是要搜索的文件名。
以下是一些示例:
hello
或world
的行:grep -e hello -e world file.txt
foo
和bar
的行:grep -e foo -e bar file.txt
abc
的行:grep -e abc file1.txt file2.txt file3.txt
[A-Z]
開頭的行:grep -e "^[A-Z]" file.txt
hello
但不包含字符串world
的行:grep -e hello -e world -v file.txt
以上只是一些基本的用法示例,grep -e
命令還有更多高級的用法和選項可以參考grep
命令的幫助文檔(man grep
)。