Ways to use sed command
View selected lines of a document/file # sed -n ‘9,20p’ file.txt View the entire file except selected lines # sed ‘21,40d’ file.txt Replacing words or characters in a file #…
View selected lines of a document/file # sed -n ‘9,20p’ file.txt View the entire file except selected lines # sed ‘21,40d’ file.txt Replacing words or characters in a file #…