Give a regular expression that finds two things, try to
come up with regular expressions that find each
individually using "egrep" command?
Answers were Sorted based on User's Feedback
Answer / manikantan t s
egrep -e <expresseion 1> -e <expression 2> <file name>
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / shammi
Suppose yu have file name k.txt
naf@warsteiner:~:>cat k.txt
My name is harish
My name is Mark
Now naf@warsteiner:~:>egrep '(harish|Mark)' k.txt
My name is harish
My name is Mark
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / niranjan
Gud command egrep but it not available in all unix flaviours.
grep -e option do the same as egrep
syntax:-
egrep 'pattern1|pattern2|pattern3' filename
grep -e 'pattern1' -e 'pattern2' -e 'pattern3' filename
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / linuxdemon(vjsujay@gmail.com)
vjsujay@vjsujay-desktop:~/test$ cat jsk
cake
coke
vjsujay@vjsujay-desktop:~/test$ egrep 'c(a|o)ke' jsk
cake
coke
| Is This Answer Correct ? | 1 Yes | 2 No |
Why we are using UNIX OS when we are doing the testing in our application?
How we will execute previous command in vi editor?
What is “chmod” command?
How to find $ai_serual resolved path by using unix
What is mtime in find command?
what is the use of wild cards?
What is file system in unix??
How do you find out all processes that are currently running in UNIX OS?
what is exact definition of operating system?
How do I use nslookup?
distinguish between physical addresses and logical address?
23 Answers College School Exams Tests, CTS, Infosys, SAX, TATA, TCS,
Why is it called grep?