Arrange the statement.
$ sed
's/
> UK.txt
United Kingdom/
UK/
g'
Country.txt
Answers
Answered by
42
Answer:
$ sed
's/
UK/
United Kingdom/
g'
Country.txt
>UK.txt
Explanation: Basics of writing a seed command.
Happy Learning!!!
Answered by
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