InterviewSolution
Saved Bookmarks
| 1. |
To delete from current cursor upto the first occurrence of }, which of the following will be used?(a) dd$}(b) d /(c) d / }(d) }The question was asked during an online interview.This key question is from Operator-Command Combinations in portion Advanced Vi of Unix |
|
Answer» CORRECT choice is (c) d / } To EXPLAIN: We can PERFORM MANY functions using operator-command combinations. For example, d / } will deletes from the current cursor upto first occurrence of } . |
|