Multiple choice technology operating systems

Which unix text processing tools will help me to replace all the instances of "hi india" to "HiIndia"?

  1. awk

  2. sed

  3. perl

  4. emac

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

sed is the stream editor designed for text transformation and replacement. The command would be 'sed "s/hi india/HiIndia/g" filename'. awk can do replacements but is primarily for text processing and report generation. perl can do it but is a general-purpose language. emacs is an editor, not a command-line text processor.