Which of the following commands replaces each occurrence of ‘bob’ in the file letter with ‘Bob’ and writes the result to the file newletter?

Which of the following commands replaces each occurrence of ‘bob’ in the file letter with
‘Bob’ and writes the result to the file newletter?

Which of the following commands replaces each occurrence of ‘bob’ in the file letter with
‘Bob’ and writes the result to the file newletter?

A.
sed ‘s/bob/Bob/g’ letter > newletter

B.
sed ‘s/bob, Bob/’ letter > newletter

C.
sed ‘s/bob/Bob’ letter > newletter

D.
sed ‘/bob/Bob’ letter > newletter

E.
sed s/bob/Bob/ letter < newletter



Leave a Reply 0

Your email address will not be published. Required fields are marked *