InterviewSolution
Saved Bookmarks
| 1. |
grep command supports both extended and regular expressions.(a) True(b) FalseThe question was asked by my college professor while I was bunking the class.My enquiry is from grep command topic in section Filters using Regular Expressions of Unix |
|
Answer» RIGHT ANSWER is (a) True The best explanation: grep command supports both CATEGORIES of regular expressions. It supports basic regular expression by default and extended regular expression with -E option. |
|