SED Command Tutorial in Linux Introduction: SED command is very powerful tool in Linux and can be used vastly in shell scripting. It is called as stream editor. It can perform lot of function on a file like replacing,finding,insertion and deletion. It is capable of solving complex text processing tasks with few lines of code. Syntax: sed OPTIONS... [SCRIPT] [INPUTFILE...] Examples: Lets create a sample file with some context. cat DEMO.txt Example 1) Replace a pattern in a file. It will replace all occurrence of the pattern. I the demo file I am going to replace the word "We" with "I". Please note it don't save the changes it is just show on the screen . himanshu@himanshu-ThinkPad-T430 ~ $ sed 's/We/I/g' DEMO.txt I are an IT Services and Training provider. I are the believers in quality services and support. I develop, support and maintenance services across the globe. I have been de...