Small Unit
Size: 1.3m x 2m
Small Unit
Size: 1.3m x 2m
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.
sed 's/Unix/Linux' hello.txt
This should be:
sed 's/Unix/Linux/'
The picture of the terminal is correct.