Which of the following will interpret (hello) as plain text?
Which of the following will interpret (hello) as plain text?
A . grep -F
B . grep -E
C . egrep
D . grep
Answer: A
Latest 101-500 Practice Questions with 242 Q&As
Updated Study Material | Instant Download | Detailed Answers and Explanations
D is also correct:
grep ‘(hello)’
will not interpret square brackets, with single or double quotes.
Without any quote, an error is displayed, no matter for the command used (no answer would be correct).