nerdexam
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)
  • A
    4% (1)
  • B
    8% (2)
  • D
    85% (22)
  • E
    4% (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.

Full 101-500 Practice