What command is used to replace the existing string with
some other?

Answers were Sorted based on User's Feedback



What command is used to replace the existing string with some other?..

Answer / thangaraju

sed 's/existingstring/newstring/g' filename or Specfied
row means sed '1,10s/existingstring/newstring/g' filename

Is This Answer Correct ?    22 Yes 1 No

What command is used to replace the existing string with some other?..

Answer / jaga

:%s/string/String1/g

Is This Answer Correct ?    12 Yes 2 No

What command is used to replace the existing string with some other?..

Answer / suresh mishra

sed 's/existing_pattern/new_pattern/g' file_name :- It replaces "existing_pattern" with "new_pattern" GLOBALLY.If you are not providing 'g' at the end, it will only replace the first occurrence of the matching pattern.

Is This Answer Correct ?    3 Yes 0 No

What command is used to replace the existing string with some other?..

Answer / vishu146

:1,$s/string/string1/gc

Is This Answer Correct ?    2 Yes 0 No

What command is used to replace the existing string with some other?..

Answer / angel

sed command

Is This Answer Correct ?    2 Yes 1 No

What command is used to replace the existing string with some other?..

Answer / amit kumar

sed 's/existing_word/new_word/g' file1.txt.It replaces the
all the existing word with new word wherever it occurs in
file1.g stands for global.

Is This Answer Correct ?    1 Yes 0 No

What command is used to replace the existing string with some other?..

Answer / drishya

:g/existing word/s//new word

this s can be used while using C in linux...

Is This Answer Correct ?    1 Yes 1 No

What command is used to replace the existing string with some other?..

Answer / pavankumar

sed 's/word1/word2/g' file

it replaces all occurences of word1 with word2 in file.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Unix Commands Interview Questions

What is the function of grep command in unix?

0 Answers  


What is the basic difference between unix and windows operating systems?

43 Answers   Bopro, College School Exams Tests, CTS, IBM, IT-Kids, Priyadarshini, Sybian Technologies, Tolani Maritime,


How to convert a hidden file to normal visible file?

8 Answers  


What is the command to find hidden files in the current directory?

0 Answers  


what is the command to find out the difference between files and folders?

6 Answers  






Differentiate cmp command from diff command.

0 Answers  


what is the difference between SED and GREP ? Which one is more better and why?

4 Answers   IBM,


Briefly, how do you install Oracle software on UNIX.

2 Answers  


how to remotely move a file ??? that mean how to move a file one machine to another machine ???

10 Answers   Altair,


Which unix command to make a new directory?

0 Answers  


how to delete entire records in unix ?

13 Answers   Cap Gemini,


What is the search command in unix?

0 Answers  


Categories