InterviewSolution
Saved Bookmarks
| 1. |
Which one of the following is the correct syntax for performing substitution using sed?(a) sed [address]s/expr1/ expr2(b) sed [address]s/expr1 expr2(c) sed [address]s/expr1/ expr2/ flags(d) sed [address]sI had been asked this question in an interview.This question is from sed command in portion Filters using Regular Expressions of Unix |
|
Answer» Right ANSWER is (C) sed [address]s/expr1/ expr2/ flags |
|