What is use of sed command?
Sed command in UNIX is commonly used for processing of files. Sed stands for Stream Editor which parses text files and used for making textual transformations to a file. The command specified to Sed, is applied on the file line by line.
Example:
To replace all matching occurrences of some text to another.
Post a Comment