The command
grep first second third /usr/you/myfile
a) prints lines containing the words first,
second or third from the file /usr/you/myfile
b) searches for lines containing the pattern
first in the files
second, third, and /usr/you/myfile and prints them
c) searches the files /usr/you/myfiel and
third for lines containing
the words first or second and prints them
d) replaces the word first with the word
second in the files third and /usr/you/myfile
e) None of the above
Answer Posted / sathe santosh
The above command will not work.
grep searches the 1st argument in 2nd argument(filename).
The filename has multiple patterns.
example:
cat 1.lst
hi
hello
bye
see the below message.
grep hi hello 1.lst
grep: can't open hello
1.lst:hi
same can be done using below command.
grep -e hi -e hello 1.lst
hi
hello
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is the command to view process running?
Using unix command how to display no of records in oracle?
What are file commands?
What are the general commands in using unix os for a beginner?
Differentiate cat command from more command.
Which command should you use to find the remaining disk space in unix server?
Which command is used to kill the last background job?
What does sed command do in unix?
how to sort the content of the file based on numeric values
Explain the terms ‘system calls’ and ‘library functions’ with respect to unix commands?
Which command is used to restrict incoming messages?
How does shebang work?
Describe the usage and functionality of the command rm –r * in unix?
Why is awk called awk?
Why is shebang used?