3 Matching Annotations
  1. Dec 2020
  2. Nov 2020
    1. sed 's/Unix/Linux' hello.txt > output.txt

      This should be:

      sed 's/Linux/Unix/' hello.txt > output.txt

      The image of the terminal is correct.

    2. sed 's/Unix/Linux' hello.txt

      This should be:

      sed 's/Unix/Linux/'

      The picture of the terminal is correct.