SED command
~Saranya sed ‘s/find/replace/’ filename Find and replace a word in a file Ex output: sed ‘s/find/replace/1’ filename It will find and replace in line 1 sed ‘1,3 s/find/replace/1’ filename It will find and replace with the given range Ex output: sed ‘s/find/replace/g’ filename...
Read out all