April 2018
Beginner
284 pages
7h 3m
English
Hello, sed is a powerful editing tool. I love working with sedIf you master sed, you will be a professional one
And suppose you use the following command:
$ sed 's/Sed/Linux sed/g' myfile
How many lines will be substituted?
$ sed '2d' myfile
How many lines will be deleted from the file?
$ sed '3a\Example text' myfile
$ sed '2i\inserted text/w outputfile' myfile
How many lines will be saved to the output file?