LPI
101-500 · 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. You've hit your Sonnet limit · resets Jun 8, 9am (UTC)
GNU and Unix Commands
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
(26 responses)- A4% (1)
- B8% (2)
- D85% (22)
- E4% (1)
Explanation
You've hit your Sonnet limit · resets Jun 8, 9am (UTC)
Topics
#sed substitution#global replacement#text processing#output redirection
Community Discussion
No community discussion yet for this question.