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

Answers were Sorted based on User's Feedback



The command grep first second third /usr/you/myfile a) prin..

Answer / apurba

Answer is B (searches for lines containing the pattern
first in the files second, third, and /usr/you/myfile and
prints them)

Is This Answer Correct ?    13 Yes 1 No

The command grep first second third /usr/you/myfile a) prin..

Answer / brijmohan

None of the option will work.

Because "grep first second third" this command will search
for the same pattern and but it should grep "first second
third" instead of grep first second third.

Is This Answer Correct ?    1 Yes 0 No

The command grep first second third /usr/you/myfile a) prin..

Answer / thajudeen

answer is E none of the above as it will search the pattern
as a single pattern "first second third"

Is This Answer Correct ?    2 Yes 2 No

The command grep first second third /usr/you/myfile a) prin..

Answer / 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

More Unix Commands Interview Questions

What is $0 bash?

0 Answers  


What is rmdir command?

0 Answers  


What is ‘ps’ command for?

0 Answers  


Using unix command how to display no of records in oracle?

0 Answers  


Which unix command to make a new directory?

0 Answers  






What is pipe command in unix?

0 Answers  


what is the difference between "cron" command and "at" command?

5 Answers  


What is pid?

4 Answers  


What is the different between UNIX command and UNIX shell script?

2 Answers  


If we want to see first 35 lines of a file which command we have to use?

8 Answers  


what is the meaning of this command rm -rf / what will it do ?

5 Answers   Altair,


What is the behavioural difference between cmp and diff commands?

0 Answers  


Categories