Computer Science, asked by nayabshabazali, 10 months ago

Arrange the statement.

$ sed
's/
> UK.txt
United Kingdom/
UK/
g'
Country.txt

Answers

Answered by patilakshaypramod
42

Answer:

$ sed

's/

UK/

United Kingdom/

g'

Country.txt

>UK.txt

Explanation: Basics of writing a seed command.

Happy Learning!!!

Answered by syed2020ashaels
0
  • The sed command is a Unix like operating system command.
  • It sands for stream editor.
  • The stream editor is used for filtering and transforming text.
  • It performs text editing operations.
  • It takes text input and perform some operations on it and outputs the modified text.
  • The given statement must be arranged as

$ sed

's/

UK/

United Kingdom/

g'

Country.txt

> UK.txt

#spj2

Similar questions