Which of the following commands will display lines that contain either start or end?
- egrep start end file.txt
- egrep ‘start|end’ file.txt
- egrep start&end file.txt
- egrep (start|end) file.txt
Please login or Register to submit your answer