Intelligent Systems and Sustainable Computational Models
Author: Sundeep Agarwal
6,797
READERS
108
PAGES
60 DAYS
GUARANTEE
ENGLISH
EPUB
Book Description
The sed command is a versatile and feature-rich version for search and replace operations, usable from the command line. An important feature that GUI applications may lack is regular expressions, a mini-programming language to precisely define a matching criteria.
You are likely to be familiar with using a search and replace dialog (usually invoked with the Ctrl+H shortcut) to locate the occurrences of a particular string and replace it with something else. The sed command is a versatile and feature-rich version for search and replace operations, usable from the command line. An important feature that GUI applications may lack is regular expressions, a mini-programming language to precisely define a matching criteria.
This book heavily leans on examples to present features one by one. In addition to command options, regular expressions will also be discussed in detail.
Exercises are also included to test your understanding.
Prerequisites
You should be familiar with command line usage in a Unix-like environment. You should also be comfortable with concepts like file redirection and command pipelines. Knowing the basics of the grep command will be handy in understanding the filtering features of sed.
You are also expected to get comfortable with reading manuals, searching online, visiting external links provided for further reading, tinkering with illustrated examples, asking for help when you are stuck and so on. In other words, be proactive and curious instead of just consuming the content passively.
Table of Contents
1. Preface
2. Introduction
3. In-place file editing
4. Selective editing
5. BRE/ERE Regular Expressions
6. Flags
7. Shell substitutions
8. z, s and f command line options
9. append, change, insert
10. Adding content from file
11. Control structures
12. Processing lines bounded by distinct markers
13. Gotchas and Tricks
14. Further Reading