Multiple choice technology operating systems

sed can be used to

  1. list the files

  2. check the process status

  3. substitute one word with another

  4. copy the contents of one file to another

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

sed (stream editor) is primarily used for text transformation and substitution. It can search for patterns and replace them with specified text using commands like s/old/new/ to substitute one word or phrase with another.