InterviewSolution
Saved Bookmarks
| 1. |
You Want To Verify Which Lines In The File Kickoff Contain 'bob'. Which Of The Following Commands Will Accomplish This? |
|
Answer» The -n OPTION when used with sed prints only the LINES CONTAINING the pattern. In this CASE, the pattern is ‘BOB’ and the file to be searched is kickoff. The -n option when used with sed prints only the lines containing the pattern. In this case, the pattern is ‘Bob’ and the file to be searched is kickoff. |
|