LPI
101-400 · Question #304
You have created a really long letter and after you are done, you notice that you used the name "Bob" many times but your forgot to capitalize it in many instances. Which command would you replace…
The correct answer is D. sed `s/bob/Bob/g' letter > newletter. See the full explanation below for the reasoning.
Question
You have created a really long letter and after you are done, you notice that you used the name "Bob" many times but your forgot to capitalize it in many instances. Which command would you replace "bob" with "Bob" in all instances and generate a new letter for printing?
Options
- Ased `/bob/Bob' letter > newletter
- Bsed s/bob/Bob/ letter < newletter
- Csed `s/bob/Bob' letter >newletter
- Dsed `s/bob/Bob/g' letter > newletter
- Esed s/bob, Bob/' letter > newletter
How the community answered
(42 responses)- A7% (3)
- B2% (1)
- C14% (6)
- D74% (31)
- E2% (1)
Community Discussion
No community discussion yet for this question.