What is sed command in linux

Содержание
  1. 15 Useful ‘sed’ Command Tips and Tricks for Daily Linux System Administration Tasks
  2. 1. Viewing a range of lines of a document
  3. 2. Viewing the entire file except a given range
  4. 3. Viewing non-consecutive lines and ranges
  5. 4. Replacing words or characters (basic substitution)
  6. 5. Replacing words or characters inside a range
  7. 6. Using regular expressions (advanced substitution) – I
  8. 7. Using regular expressions (advanced substitution) – II
  9. 8. Viewing lines containing with a given pattern
  10. 9. Inserting spaces in files
  11. 10. Emulating dos2unix with inline editing
  12. 11. In-place editing and backing up original file
  13. 12. Switching pairs of words
  14. 13. Replacing words only if a separate match is found
  15. 14. Performing two or more substitutions at once
  16. 15. Combining sed and other commands
  17. Summary
  18. If You Appreciate What We Do Here On TecMint, You Should Consider:
  19. Linux sed command
  20. Description
  21. Syntax
  22. Options
  23. Sed programs
  24. How sed works
  25. Selecting lines with sed
  26. Overview of regular expression syntax
  27. Often-used commands
  28. The s command
  29. Less frequently-used commands
  30. Commands for sed gurus
  31. Commands specific to GNU sed
  32. GNU extensions for escapes in regular expressions
  33. Some sample scripts
  34. Sample script: centering lines
  35. Sample script: increment a number
  36. Sample script: rename files to lowercase
  37. Sample script: print bash environment
  38. Sample script: reverse characters of lines
  39. Sample script: reverse lines of files
  40. Sample script: numbering lines
  41. Sample script: numbering non-blank lines
  42. Sample script: counting characters
  43. Sample script: counting words
  44. Sample script: counting lines
  45. Sample script: printing the first lines
  46. Sample script: printing the last lines
  47. Sample script: make duplicate lines unique
  48. Sample script: print duplicated lines of input
  49. Sample script: remove all duplicated lines
  50. Sample script: squeezing blank lines
  51. GNU sed’s limitations (and non-limitations)
  52. Extended regular expressions
  53. Examples
  54. Related commands

15 Useful ‘sed’ Command Tips and Tricks for Daily Linux System Administration Tasks

Every system administrator has to deal with plain text files on a daily basis. Knowing how to view certain sections, how to replace words, and how to filter content from those files are skills you need to have handy without having to do a Google search.

15 Useful ‘sed’ Command Tips and Tricks for Linux

In this article we will review sed, the well-known stream editor, and share 15 tips to use it in order to accomplish the goals mentioned earlier, and more.

1. Viewing a range of lines of a document

Tools such as head and tail allow us to view the bottom or the top of a file. What if we need to view a section in the middle? The following sed one-liner will return lines 5 through 10 from myfile.txt:

2. Viewing the entire file except a given range

On the other hand, it’s possible that you want to print the entire file except a certain range. To exclude lines 20 through 35 from myfile.txt, do:

3. Viewing non-consecutive lines and ranges

It’s possible that you’re interested in set of non-consecutive lines, or in more than one range. Let’s display lines 5-7 and 10-13 from myfile.txt:

As you can see, the -e option allows us to execute a given action (in this case, print lines) for each range.

4. Replacing words or characters (basic substitution)

To replace every instance of the word version with story in myfile.txt, do:

Additionally, you may want to consider using gi instead of g in order to ignore character case:

To replace multiple blank spaces with a single space, we will use the output of ip route show and a pipeline:

Compare the output of ip route show with and without the pipeline:

Replace Words or Characters in File

5. Replacing words or characters inside a range

If you’re interested in replacing words only within a line range (30 through 40, for example), you can do:

Of course, you can indicate a single line through its corresponding number instead of a range.

6. Using regular expressions (advanced substitution) – I

Sometimes configuration files are loaded with comments. While this is certainly useful, it may be helpful to display only the configuration directives sometimes if you want to view them all at a glance.

To remove empty lines or those beginning with # from the Apache configuration file, do:

The caret sign followed by the number sign (^#) indicates the beginning of a line, whereas ^$ represents blank lines. The vertical bars indicate boolean operations, whereas the backward slash is used to escape the vertical bars.

In this particular case, the Apache configuration file has lines with #’s not at the beginning of some lines, so *# is used to remove those as well.

7. Using regular expressions (advanced substitution) – II

To replace a word beginning with uppercase or lowercase with another word, we can also use sed. To illustrate, let’s replace the word zip or Zip with rar in myfile.txt:

8. Viewing lines containing with a given pattern

Another use of sed consists in printing the lines from a file that match a given regular expression. For example, we may be interested in viewing the authorization and authentication activities that took place on July 2, as per the /var/log/secure log in a CentOS 7 server.

In this case, the pattern to search for is Jul 2 at the beginning of each line:

View Logs (Lines) of Particular Date

9. Inserting spaces in files

With sed, we can also insert spaces (blank lines) for each non-empty line in a file. To insert one blank line every other line in LICENSE, a plain text file, do:

To insert two blank lines, do:

Add an uppercase G separated by a semicolon if you want to add more blank lines. The following image illustrates the example outlined in this tip:

Insert Spaces in File

This tip may come in handy if you want to inspect a large configuration file. Inserting a blank space every other line and piping the output to less will result in a more-friendly reading experience.

10. Emulating dos2unix with inline editing

The dos2unix program converts plain text files from Windows/Mac formatting to Unix/Linux, removing hidden newline characters inserted by some text editors used in those platforms. If it is not installed in your Linux system, you can mimic its functionality with sed instead of installing it.

In the image at the left we can see several DOS newline characters (^M) , which were later removed with:

Covert Text Files from Windows to Linux

Please note that the -i option indicate in-place editing. Then changes will not be returned to the screen, but will be saved to the file.

Note: You can insert DOS newline characters while editing a file in vim editor with Ctrl+V and Ctrl+M .

11. In-place editing and backing up original file

In the previous tip we used sed to modify a file but did not save the original file. Sometimes it’s a good idea to save a backup copy of the original file just in case.

To do that, indicate a suffix following the -i option (inside single quotes) to be used to rename the original file.

In the following example we will replace all instances of this or This (ignoring case) with that in myfile.txt, and we will save the original file as myfile.txt.orig.

Finally, we will use diff utility to identify the differences between both files:

Use sed to Edit and Backup Original File

12. Switching pairs of words

Let’s suppose you have a file containing full names in the format First name, Last name. To adequately process the file, you may want to switch Last name and First name.

We can do that with sed fairly easily:

Switch Words in File

In the image above we can see that parentheses, being special characters, need to be escaped, as do the numbers 1 and 2.

These numbers represent the highlighted regular expressions (which need to appear inside parentheses):

  1. 1 represents the beginning of each line up to the comma.
  2. 2 is a placeholder for everything that is right of the comma to the end of the line.

The desired output is indicated in the format SecondColumn (Last name) + comma + space + FirstColumn (First name). Feel free to change it to whatever you wish.

13. Replacing words only if a separate match is found

Sometimes replacing all instances of a given word, or a random few, is not precisely what we need. Perhaps we need to perform the replacement if a separate match is found.

For example, we may want to replace start with stop only if the word services is found in the same line. In that scenario, here’s what will happen:

In the first line, start will not be replaced with stop since the word services does not appear in that line, as opposed to the second line.

Replace Words in File

14. Performing two or more substitutions at once

You can combine two or more substitutions one single sed command. Let’s replace the words that and line in myfile.txt with This and verse, respectively.

Note how this can be done by using an ordinary sed substitution command followed by a semicolon and a second substitution command:

This tip is illustrated in the following image:

Replace Multiple Words in File

15. Combining sed and other commands

Of course, sed can be combined with other tools in order to create more powerful commands. For example, let’s use the example given in TIP #4 and extract our IP address from the output of the ip route command.

We will begin by printing only the line where the word src is. Then we will convert multiple spaces into a single one. Finally, we will cut the 9th field (considering a single space as field separator), which is where the IP address is:

The image below illustrates each step of the above command:

Combine sed with Other Commands

Summary

In this guide we have shared 15 sed tips and tricks to help you with your daily system administration tasks. Is there any other tip that you use on a regular basis and would like to share with us and the rest of the community?

If so, feel free to let us know using the comment form below. Questions and comments are also welcome – we look forward to hearing from you!

If You Appreciate What We Do Here On TecMint, You Should Consider:

TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

We are thankful for your never ending support.

Источник

Linux sed command

On Unix-like operating systems, sed is a stream editor: it filters and transforms text.

This page covers the GNU/Linux version of sed.

Description

The sed stream editor performs basic text transformations on an input stream (a file, or input from a pipeline). While in some ways similar to an editor which permits scripted edits (such as ed), sed works by making only one pass over the input(s), and is consequently more efficient. But it is sed‘s ability to filter text in a pipeline which particularly distinguishes it from other types of editors.

Syntax

If you do not specify INPUTFILE, or if INPUTFILE is ««, sed filters the contents of the standard input. The script is actually the first non-option parameter, which sed specially considers a script and not an input file if and only if none of the other options specifies a script to be executed (that is, if neither of the -e and -f options is specified).

Options

-n, —quiet, —silent Suppress automatic printing of pattern space.
-e script,
—expression=script
Add the script script to the commands to be executed.
-f script-file,
—file=script-file
Add the contents of script-file to the commands to be executed.
—follow-symlinks Follow symlinks when processing in place.
-i[SUFFIX],
—in-place[=SUFFIX]
Edit files in place (this makes a backup with file extension SUFFIX, if SUFFIX is supplied).
-l N, —line-length=N Specify the desired line-wrap length, N, for the «l» command.
—POSIX Disable all GNU extensions.
-r, —regexp-extended Use extended regular expressions in the script.
-s, —separate Consider files as separate rather than as a single continuous long stream.
-u, —unbuffered Load minimal amounts of data from the input files and flush the output buffers more often.
—help Display a help message, and exit.
—version Output version information, and exit.

Sed programs

A sed program consists of one or more sed commands, passed in by one or more of the -e, -f, —expression, and —file options, or the first non-option argument if none of these options are used. This documentation frequently refers to «the» sed script; this should be understood to mean the in-order catenation of all of the scripts and script-files passed in.

Commands within a script or script-file can be separated by semicolons («;«) or newlines (ASCII code 10). Some commands, due to their syntax, cannot be followed by semicolons working as command separators and thus should be terminated with newlines or be placed at the end of a script or script-file. Commands can also be preceded with optional non-significant whitespace characters.

Each sed command consists of an optional address or address range (for instance, line numbers specifying what part of the file to operate on; see Selecting Lines for details), followed by a one-character command name and any additional command-specific code.

How sed works

sed maintains two data buffers: the active pattern space, and the auxiliary hold space. Both are initially empty.

Читайте также:  Тем для windows баскетбол

sed operates by performing the following cycle on each line of input: first, sed reads one line from the input stream, removes any trailing newline, and places it in the pattern space. Then commands are executed; each command can have an address associated to it: addresses are a kind of condition code, and a command is only executed if the condition is verified before the command is to be executed.

When the end of the script is reached, unless the -n option is in use, the contents of pattern space are printed out to the output stream, adding back the trailing newline if it was removed. Then the next cycle starts for the next input line.

Unless special commands (like ‘D’) are used, the pattern space is deleted between two cycles. The hold space, on the other hand, keeps its data between cycles (see commands ‘h’, ‘H’, ‘x’, ‘g’, ‘G’ to move data between both buffers).

Selecting lines with sed

Addresses in a sed script can be in any of the following forms:

number Specifying a line number will match only that line in the input. (Note that sed counts lines continuously across all input files unless -i or -s options are specified.)
first

step

This GNU extension of sed matches every step lines starting with line first. In particular, lines will be selected when there exists a non-negative n such that the current line-number equals first + (n * step). Thus, to select the odd-numbered lines, one would use 1

2; to pick every third line starting with the second, ‘2

3’ would be used; to pick every fifth line starting with the tenth, use ‘10

0’ is another way of saying 50.

$ This address matches the last line of the last file of input, or the last line of each file when the -i or -s options are specified.
/regexp/ This selects any line which matches the regular expression regexp. If regexp itself includes any «/» characters, each must be escaped by a backslash («\«).

The empty regular expression ‘//’ repeats the last regular expression match (the same holds if the empty regular expression is passed to the s command). Note that modifiers to regular expressions are evaluated when the regular expression is compiled, thus it is invalid to specify them together with the empty regular expression.

\%regexp% (The % may be replaced by any other single character.)

This also matches the regular expression regexp, but allows one to use a different delimiter than «/«. This option is particularly useful if the regexp itself contains a lot of slashes, since it avoids the tedious escaping of every «/«. If regexp itself includes any delimiter characters, each must be escaped by a backslash («\«).

/regexp/I

\%regexp%I

The I modifier to regular-expression matching is a GNU extension which causes the regexp to be matched in a case-insensitive (as opposed to case-sensitive) manner.
/regexp/M

\%regexp%M

The M modifier to regular-expression matching is a GNU sed extension which causes ^ and $ to match respectively (in addition to the normal behavior) the empty string after a newline, and the empty string before a newline. There are special character sequences («\`» and «\’«) which always match the beginning or the end of the buffer. M stands for multi-line.

If no addresses are given, then all lines are matched; if one address is given, then only lines matching that address are matched.

An address range can be specified by specifying two addresses separated by a comma («,«). An address range matches lines starting from where the first address matches, and continues until the second address matches (inclusively).

If the second address is a regexp, then checking for the ending match starts with the line following the line which matched the first address: a range always spans at least two lines (except of course if the input stream ends).

If the second address is a number less than (or equal to) the line matching the first address, then only the one line is matched.

GNU sed also supports some special two-address forms; all these are GNU extensions:

0,/regexp/ A line number of 0 can be used in an address specification like 0,/regexp/ so that sed will try to match regexp in the first input line too. In other words, 0,/regexp/ is similar to 1,/regexp/, except that if addr2 matches the very first line of input the 0,/regexp/ form will consider it to end the range, whereas the 1,/regexp/ form will match the beginning of its range and hence make the range span up to the second occurrence of the regular expression.

Note that this is the only place where the 0 address makes sense; there is no «0th» line, and commands that are given the 0 address in any other way gives an error.

addr1,+N Matches addr1 and the N lines following addr1.
addr1,

N

Matches addr1 and the lines following addr1 until the next line whose input line number is a multiple of N.

Appending the ! character to the end of an address specification negates the sense of the match. That is, if the ! character follows an address range, then only lines which do not match the address range will be selected. This also works for singleton addresses, and, perhaps perversely, for the null address.

Overview of regular expression syntax

To know how to use sed, understand regular expressions («regexp» for short). A regular expression is a pattern that is matched against a subject string from left to right. Most characters are ordinary: they stand for themselves in a pattern, and match the corresponding characters in the subject. As a simple example, the pattern

. matches a portion of a subject string that is identical to itself. The power of regular expressions comes from the ability to include alternatives and repetitions in the pattern. These are encoded in the pattern by the use of special characters, which do not stand for themselves but instead are interpreted in some special way. Here is a brief description of regular expression syntax as used in sed:

char A single ordinary character matches itself.
* Matches a sequence of zero or more instances of matches for the preceding regular expression, which must be an ordinary character, a special character preceded by «\«, a «.«, a grouped regexp (see below), or a bracket expression. As a GNU extension, a postfixed regular expression can also be followed by «*«; for example, a** is equivalent to a*. POSIX 1003.1-2001 says that * stands for itself when it appears at the start of a regular expression or subexpression, but many non-GNU implementations do not support this, and portable scripts should instead use «\*» in these contexts.
\+ Like *, but matches one or more. It is a GNU extension.
\? Like *, but only matches zero or one. It is a GNU extension.
\<i\> Like *, but matches exactly i sequences (i is a decimal integer; for compatibility, keep it between 0 and 255, inclusive).
\<i,j\> Matches between i and j, inclusive, sequences.
\<i,\> Matches more than or equal to i sequences.
\(regexp\) Groups the inner regexp as a whole; this is used to:
  • Apply postfix operators, like \(abcd\)*: this searches for zero or more whole sequences of ‘abcd’, while abcd* would search for ‘abc’ followed by zero or more occurrences of ‘d’. Note that support for \(abcd\)* is required by POSIX 1003.1-2001, but many non-GNU implementations do not support it and hence it is not universally portable.
  • Use back references (see below).
. Matches any character, including a newline.
^ Matches the null string at beginning of the pattern space, i.e., what appears after the ^ must appear at the beginning of the pattern space.

In most scripts, pattern space is initialized to the content of each line. So, it is a useful simplification to think of ^#include as matching only lines where ‘#include’ is the first thing on line—if there are spaces before, for example, the match fails. This simplification is valid as long as the original content of pattern space is not modified, for example with an s command.

^ acts as a special character only at the beginning of the regular expression or subexpression (that is, after \( or \|). Portable scripts should avoid ^ at the beginning of a subexpression, though, as POSIX allows implementations that treat ^ as an ordinary character in that context.

$ It is the same as ^, but refers to end of pattern space. $ also acts as a special character only at the end of the regular expression or subexpression (that is, before \) or \|), and its use at the end of a subexpression is not portable.
[list]

[^list]

Matches any single character in list: for example, [aeiou] matches all vowels. A list may include sequences like char1char2, which matches any character between char1 and char2. For example, [b-e] matches any of the characters b, c, d, or e.

A leading ^ reverses the meaning of list, so that it matches any single character not in list. To include ] in the list, make it the first character (after the ^ if needed); to include in the list, make it the first or last; to include ^ put it after the first character.

The characters $, *, ., [, and \ are normally not special within list. For example, [\*] matches either ‘\’ or ‘*’, because the \ is not special here. However, strings like [.ch.], [=a=], and [:space:] are special within list and represent collating symbols, equivalence classes, and character classes, respectively, and [ is therefore special within list when it is followed by ., =, or :. Also, when not in POSIXLY_CORRECT mode, special escapes like \n and \t are recognized within list. See escapes for more information.

regexp1\|regexp2 Matches either regexp1 or regexp2. Use parentheses to use complex alternative regular expressions. The matching process tries each alternative in turn, from left to right, and the first one that succeeds is used. This option is a GNU extension.
regexp1regexp2 Matches the concatenation of regexp1 and regexp2. Concatenation binds more tightly than \|, ^, and $, but less tightly than the other regular expression operators.
\digit Matches the digit-th \(. \) parenthesized subexpression in the regular expression. This option is called a back reference. Subexpressions are implicitly numbered by counting occurrences of \( left-to-right.
\n Matches the newline character.
\char Matches char, where char is one of $, *, ., [, \, or ^. Note that the only C-like backslash sequences that you can portably assume to be interpreted are \n and \\; in particular \t is not portable, and matches a ‘t’ under most implementations of sed, rather than a tab character.

Note that the regular expression matcher is greedy, i.e., matches are attempted from left to right and, if two or more matches are possible starting at the same character, it selects the longest.

abcdef Matches «abcdef«.
a*b Matches zero or more «a» characters, followed by a single «b«. For example, «b» or «aaaaaaab«.
a\?b Matches «b» or «ab«.
a\+b\+ Matches one or more «a» characters followed by one or more «b«s. «ab» is the shortest possible match, but other examples are «aaaaab«, «abbbbbb«, or «aaaaaabbbbbbb«.
.* or .\+ Either of these expressions will match all of the characters in a non-empty string, but only .* will match the empty string.
^main.*(.*) This matches a string starting with «main«, followed by an opening and closing parenthesis. The «n«, «(» and «)» need not be adjacent.
^# This matches a string beginning with «#«.
\\$ This matches a string ending with a single backslash. The regexp contains two backslashes for escaping.
\$ This matches a string consisting of a single dollar sign.
[a-zA-Z0-9] In the C locale, this matches any ASCII letters or digits.
[^ tab]\+ (Here tab stands for a single tab character.) This matches a string of one or more characters that does not contain a space or a tab. Usually this means a word.
^\(.*\)\n\1$ This matches a string consisting of two equal substrings separated by a newline.
.\<9\>A$ This matches nine characters followed by an ‘A’.
^.\<15\>A This matches the start of a string that contains 16 characters with the last character of being ‘A’.

Often-used commands

If you use sed at all, you will probably want to know these commands.

# (No addresses allowed with this command.) The # character begins a comment; the comment continues until the next newline.

If you are concerned about portability, be aware that some implementations of sed (which are not POSIX conformant) may only support a single one-line comment, and then only when the very first character of the script is a #.

Warning: if the first two characters of the sed script are #n, then the -n (no-autoprint) option is forced. If you want to put a comment in the first line of your script and that comment begins with the letter ‘n’ and you do not want this behavior, then either use a capital ‘N’, or place at least one space before the ‘n’.

q [exit-code] This command only accepts a single address.

Exit sed without processing any more commands or input. Note that the current pattern space is printed if auto-print is not disabled with the -n options. The ability to return an exit code from the sed script is a GNU sed extension.

d Delete the pattern space; immediately start next cycle.
p Print out the pattern space (to the standard output). This command is usually only used in conjunction with the -n command-line option.
n If auto-print is not disabled, print the pattern space, then, regardless, replace the pattern space with the next line of input. If there is no more input then sed exits without processing any more commands.
<commands > A group of commands may be enclosed between <and > characters. This option is particularly useful when you want a group of commands to be triggered by a single address (or address-range) match.

The s command

The syntax of the s command (which stands for «substitute») is: ‘s/regexp/replacement/flags’. The / characters may be uniformly replaced by any other single character within any given s command. The / character (or whatever other character is used in its stead) can appear in the regexp or replacement only if it’s preceded by a \ character.

The s command is probably the most important in sed and has a lot of different options. Its basic concept is simple: the s command attempts to match the pattern space against the supplied regexp; if the match is successful, then that portion of the pattern space which was matched is replaced with replacement.

The replacement can contain \n (n being a number from 1 to 9, inclusive) references, which refer to the portion of the match that is contained between the nth \( and its matching \). Also, the replacement can contain unescaped & characters which reference the whole matched portion of the pattern space. Finally, as a GNU sed extension, you can include a special sequence made of a backslash and one of the letters L, l, U, u, or E. The meaning is as follows:

\L Turn the replacement to lowercase until a \U or \E is found
\l Turn the next character to lowercase
\U Turn the replacement to uppercase until a \L or \E is found
\u Turn the next character to uppercase
\E Stop case conversion started by \L or \U

To include a literal \, &, or newline in the final replacement, precede the desired \, &, or newline in the replacement with a \.

The s command can be followed by zero or more of the following flags:

g Apply the replacement to all matches to the regexp.
number Only replace the number ‘th match of the regexp.

Note: the POSIX standard does not specify what should happen when you mix the g and number modifiers, and currently there is no widely agreed upon meaning across sed implementations. For GNU sed, the interaction is defined to be: ignore matches before the numberth, and then match and replace all matches from the numberth on.

p If the substitution was made, then print the new pattern space.

Note: when both the p and e options are specified, the relative ordering of the two produces very different results. In general, ep (evaluate then print) is what you want, but operating the other way round can be useful for debugging. For this reason, the current version of GNU sed interprets specially the presence of p options both before and after e, printing the pattern space before and after evaluation, while in general flags for the s command show their effect once. This behavior, although documented, might change in future versions.

w file If the substitution was made, then write out the result to the named file. As a GNU sed extension, two special values of file are supported: /dev/stderr, which writes the result to the standard error, and /dev/stdout, which writes to the standard output.
e This command allows one to pipe input from a shell command into pattern space. If a substitution was made, the command found in pattern space is executed and pattern space is replaced with its output. A trailing newline is suppressed; results are undefined if the command to be executed contains a null character. This option is a GNU sed extension.
I, i The I modifier to regular-expression matching is a GNU extension which makes sed match regexp in a case-insensitive manner.
M, m The M modifier to regular-expression matching is a GNU sed extension which causes ^ and $ to match respectively (in addition to the normal behavior) the empty string after a newline, and the empty string before a newline. There are special character sequences (\` and \’) which always match the beginning or the end of the buffer. M stands for multi-line.

Less frequently-used commands

Though perhaps less frequently used than those in the previous section, some very small yet useful sed scripts can be built with these commands.

y/source-chars/dest-chars/ (The / characters may be uniformly replaced by any other single character within any given y command.)

Transliterate any characters in the pattern space which match any of the source-chars with the corresponding character in dest-chars.

Instances of the / (or whatever other character is used instead), \, or newlines can appear in the source-chars or dest-chars lists, provide that each instance is escaped by a \. The source-chars and dest-chars lists must contain the same number of characters (after de-escaping).

a\ text As a GNU extension, this command accepts two addresses.

Queue the lines of text which follow this command (each but the last ending with a \, which are removed from the output) to be output at the end of the current cycle, or when the next input line is read.

Escape sequences in text are processed, so use \\ in text to print a single backslash.

As a GNU extension, if between the a and the newline there is other than a whitespace-\ sequence, then the text of this line, starting at the first non-whitespace character after the a, is taken as the first line of the text block. (This enables a simplification in scripting a one-line add.) This extension also works with the i and c commands.

i\ text As a GNU extension, this command accepts two addresses.

Immediately output the lines of text which follow this command (each but the last ending with a \, which are removed from the output).

c\ text Delete the lines matching the address or address-range, and output the lines of text which follow this command (each but the last ending with a \, which are removed from the output) in place of the last line (or in place of each line, if no addresses were specified). A new cycle is started after this command is done, since the pattern space will be deleted.
= As a GNU extension, this command accepts two addresses.

Print out the current input line number (with a trailing newline).

l n Print the pattern space in an unambiguous form: non-printable characters (and the \ character) are printed in C-style escaped form; long lines are split, with a trailing \ character to indicate the split; the end of each line is marked with a $.

n specifies the desired line-wrap length; a length of 0 (zero) means to never wrap long lines. If omitted, the default as specified on the command line is used. The n parameter is a GNU sed extension.

r file name As a GNU extension, this command accepts two addresses.

Queue the contents of file name to be read and inserted into the output stream at the end of the current cycle, or when the next input line is read. Note that if file name cannot be read, it is treated as if it were an empty file, without any error indication.

As a GNU sed extension, the special value /dev/stdin is supported for the file name, which reads the contents of the standard input.

w file name Write the pattern space to file name. As a GNU sed extension, two special values of file name are supported: /dev/stderr, which writes the result to the standard error, and /dev/stdout, which writes to the standard output.

The file is created (or truncated) before the first input line is read; all w commands (including instances of the w flag on successful s commands) which refer to the same file name are output without closing and reopening the file.

D If pattern space contains no newline, start a normal new cycle as if the d command was issued. Otherwise, delete text in the pattern space up to the first newline, and restart cycle with the resultant pattern space, without reading a new line of input.
N Add a newline to the pattern space, then append the next line of input to the pattern space. If there is no more input then sed exits without processing any more commands.
P Print out the portion of the pattern space up to the first newline.
h Replace the contents of the hold space with the contents of the pattern space.
H Append a newline to the contents of the hold space, and then append the contents of the pattern space to that of the hold space.
g Replace the contents of the pattern space with the contents of the hold space.
G Append a newline to the contents of the pattern space, and then append the contents of the hold space to that of the pattern space.
x Exchange the contents of the hold and pattern spaces.

Commands for sed gurus

In most cases, use of these commands indicates that you are probably better off programming in something like awk or Perl. But occasionally one is committed to sticking with sed, and these commands can enable one to write quite convoluted scripts.

: label [No addresses allowed with this command.] Specify the location of label for branch commands. In all other respects, a no-op (no operation performed).
b label Unconditionally branch to label. The label may be omitted, in which case the next cycle is started.
t label Branch to label only if there was a successful substitution since the last input line was read or conditional branch was taken. The label may be omitted, in which case the next cycle is started.

Commands specific to GNU sed

These commands are specific to GNU sed, so you must use them with care and only when you are sure that the script doesn’t need to be ported. They allow you to check for GNU sed extensions or do tasks that are required quite often, yet are unsupported by standard seds.

e [command] This command allows one to pipe input from a shell command into pattern space. Without parameters, the e command executes the command found in the pattern space and replaces the pattern space with the output; a trailing newline is suppressed.

If a parameter is specified, instead, the e command interprets it as a command and sends its output to the output stream (like r does). The command can run across multiple lines, all but the last ending with a back-slash.

In both cases, the results are undefined if the command to be executed contains a null character.

F Print out the file name of the current input file (with a trailing newline).
L n This GNU sed extension fills and joins lines in pattern space to produce output lines of (at most) n characters, like fmt does; if n is omitted, the default as specified on the command line is used. This command is considered a failed experiment and unless there is enough request (which seems unlikely) will be removed in future versions.
Q [exit-code] This command only accepts a single address.

This command is the same as q, but will not print the contents of pattern space. Like q, it provides the ability to return an exit code to the caller.

This command can be useful because the only alternative ways to accomplish this apparently trivial function are to use the -n option (which can unnecessarily complicate your script) or resorting to the following snippet, which wastes time by reading the whole file without any visible effect:

:eat #Quit silently on the last line: $d #Read another line, silently: N #Overwrite pattern space each time to save memory: g b eat.

R file name Queue a line of file name to be read and inserted into the output stream at the end of the current cycle, or when the next input line is read. Note that if file name cannot be read, or if its end is reached, no line is appended, without any error indication.

As with the r command, the special value /dev/stdin is supported for the file name, which reads a line from the standard input.

T label Branch to label only if there was no successful substitutions since the last input line was read or conditional branch was taken. The label may be omitted, in which case the next cycle is started.
v version This command does nothing, but makes sed fail if GNU sed extensions are not supported, because other versions of sed do not implement it. Also, you can specify the version of sed your script requires, such as 4.0.5. The default is 4.0 because that is the first version that implemented this command.

This command enables all GNU extensions even if POSIXLY_CORRECT is set in the environment.

W file name Write to the given file name the portion of the pattern space up to the first newline. Everything said under the w command about file handling holds here too.
z This command empties the content of pattern space. It is usually the same as ‘s/.*//’, but is more efficient and works in the presence of invalid multibyte sequences in the input stream. POSIX mandates that such sequences are not matched by ‘.’, so that there is no portable way to clear sed‘s buffers in the middle of the script in most multibyte locales (including UTF-8 locales).

GNU extensions for escapes in regular expressions

Until now (on this page, anyway), we have only encountered escapes of the form ‘\^’, for example, which tell sed not to interpret the circumflex (caret) as a special character, but rather to take it literally. For another example, ‘\*’ matches a single asterisk rather than zero or more backslashes.

This section introduces another kind of escape—that is, escapes that are applied to a character or sequence of characters that ordinarily are taken literally, and that sed replaces with a special character. This provides a way of encoding non-printable characters in patterns in a visible manner. There is no restriction on the appearance of non-printing characters in a sed script, but when a script is being prepared in the shell or by text editing, it is usually easier to use one of the following escape sequences than the binary character it represents:

\a Produces or matches a bel character, that is an «alert» (ASCII 7).
\f Produces or matches a form feed (ASCII 12).
\n Produces or matches a newline (ASCII 10).
\r Produces or matches a carriage return (ASCII 13).
\t Produces or matches a horizontal tab (ASCII 9).
\v Produces or matches a so called «vertical tab» (ASCII 11).
\cx Produces or matches Control-x, where x is any character. The precise effect of ‘\cx’ is as follows: if x is a lowercase letter, it is converted to uppercase. Then bit 6 of the character (hex 40) is inverted. Thus ‘\cz’ becomes hex 1A, but ‘\c<’ becomes hex 3B, while ‘\c;’ becomes hex 7B.
\dxxx Produces or matches a character whose decimal ASCII value is xxx.
\oxxx Produces or matches a character whose octal ASCII value is xxx.
\xxx Produces or matches a character whose hexadecimal ASCII value is xx.

\b’ (backspace) was omitted because of the conflict with the existing «word boundary» meaning.

Other escapes match a particular character class and are valid only in regular expressions:

\w Matches any «word» character. A «word» character is any letter or digit or the underscore character.
\W Matches any «non-word» character.
\b Matches a word boundary; that is, it matches if the character to the left is a «word» character and the character to the right is a «non-word» character, or vice versa.
\B Matches everywhere but on a word boundary; that is it matches if the character to the left and the character to the right are either both «word» characters or both «non-word» characters.
\` Matches only at the start of pattern space. This option is different from ^ in multi-line mode.
\’ Matches only at the end of pattern space. This option is different from $ in multi-line mode.

Some sample scripts

Here are some sed scripts to guide you in the art of mastering sed.

Sample script: centering lines

This script centers all lines of a file on 80 columns width. To change that width, the number in \<. \> must be replaced, and the number of added spaces also must be changed.

Note how the buffer commands are used to separate parts in the regular expressions to be matched, which is a common technique.

Sample script: increment a number

This script is one of a few that demonstrate how to do arithmetic in sed. This script is indeed possible, but must be done manually.

To increment one number you add 1 to last digit, replacing it by the following digit. There is one exception: when the digit is a nine the previous digits must be also incremented until you don’t have a nine.

This solution is very clever and smart because it uses a single buffer; if you don’t have this limitation, the algorithm used in Numbering Lines is faster. It works by replacing trailing nines with an underscore, then using multiple s commands to increment the last digit, and then again substituting underscores with zeros.

Sample script: rename files to lowercase

This script is a pretty strange use of sed. We transform text, and transform it to be shell commands, then feed them to shell. Don’t worry, even worse hacks are done when using sed. Scripts have even been written converting the output of date into a bc program. So, stranger things have happened.

The main body of this is the sed script, which remaps the name from lower to upper (or vice versa) and even checks out if the remapped name is the same as the original name. Note how the script is parameterized using shell variables and proper quoting.

Sample script: print bash environment

This script strips the definition of the shell functions from the output of the set command in the Bourne-Again shell (bash).

Sample script: reverse characters of lines

This script can reverse the position of characters in lines. The technique moves two characters at a time, hence it is faster than more intuitive implementations.

Note the tx command before the definition of the label. This command is often needed to reset the flag that is tested by the t command.

Sample script: reverse lines of files

This one begins a series of totally useless (yet interesting) scripts emulating various Unix commands. This, in particular, is a tac workalike.

Note that on implementations other than GNU sed this script might easily overflow internal buffers.

Sample script: numbering lines

This script replaces ‘cat -n’; in fact it formats its output exactly like GNU cat does.

Of course this is completely useless for two reasons: first, because somebody else did it in C (the cat command), and second, because the following Bourne-shell script could be used for the same purpose and would be much faster:

It uses sed to print the line number, then groups lines two by two using N. Of course, this script does not teach as much as the one presented below.

The algorithm used for incrementing uses both buffers, so the line is printed as soon as possible and then discarded. The number is split so that changing digits go in a buffer and unchanged ones go in the other; the changed digits are modified in a single step (using a y command). The line number for the next line is then composed and stored in the hold space, to be used in the next iteration.

Sample script: numbering non-blank lines

Emulating ‘cat -b’ is almost the same as ‘cat -n’: we only have to select which lines are to be numbered and which are not.

The part that is common to this script and the previous one is not commented to show how important it is to comment sed scripts properly.

Sample script: counting characters

This script shows another way to do arithmetic with sed. In this case, we have to add possibly large numbers, so implementing this by successive increments would not be feasible (and possibly even more complicated to contrive than this script).

The approach is to map numbers to letters, kind of an abacus implemented with sed. ‘a‘s are units, ‘b‘s are tens and so on: we add the number of characters on the current line as units, and then propagate the carry to tens, hundreds, and so on.

As usual, running totals are kept in hold space.

On the last line, we convert the abacus form back to decimal. For the sake of variety, this is done with a loop rather than with some 80 s commands: first we convert units, removing ‘a‘s from the number; then we rotate letters so that tens become ‘a‘s, and so on until no more letters remain.

Sample script: counting words

This script is almost the same as the previous one, once each of the words on the line is converted to a single ‘a’ (in the previous script each letter was changed to an ‘a’).

It is interesting that real wc programs have optimized loops for ‘wc -c’, so they are much slower at counting words rather than characters. This script’s bottleneck, instead, is arithmetic, and hence the word-counting one is faster (it has to manage smaller numbers).

Again, the common parts are not commented to show the importance of commenting sed scripts.

Sample script: counting lines

Sed gives us ‘wc -l’ functionality for free. Here is the code:

Sample script: printing the first lines

This script is probably the simplest useful sed script. It displays the first 10 lines of input; the number of displayed lines is right before the q command.

Sample script: printing the last lines

Printing the last n lines rather than the first is more complex but indeed possible. The n is encoded in the second line, before the bang («!«) character.

This script is similar to the tac script (above) in that it keeps the final output in the hold space and prints it at the end:

Mainly, the scripts keeps a window of 10 lines and slides it by adding a line and deleting the oldest (the substitution command on the second line works like a D command but does not restart the loop).

The «sliding window» technique is a very powerful way to write efficient and complex sed scripts, because commands like P would require a lot of work if implemented manually.

To introduce the technique, which is fully demonstrated in the rest of this chapter and is based on the N, P and D commands, here is an implementation of tail using a simple «sliding window.»

This looks complicated but in fact the working concept is the same as the last script: after we have kicked in the appropriate number of lines, however, we stop using the hold space to keep inter-line state, and instead use N and D to slide pattern space by one line:

Note how the first, second and fourth line are inactive after the first ten lines of input. After that, all the script does is: exiting on the last line of input, appending the next input line to pattern space, and removing the first line.

Sample script: make duplicate lines unique

This script is an example of the art of using the N, P and D commands, probably the most difficult to master.

As you can see, we maintain a 2-line window using P and D. This technique is often used in advanced sed scripts.

Sample script: print duplicated lines of input

This script prints only duplicated lines, like ‘uniq -d’.

Sample script: remove all duplicated lines

This script prints only unique lines, like ‘uniq -u’.

Sample script: squeezing blank lines

As a final example, here are three scripts, of increasing complexity and speed, that implement the same function as ‘cat -s’, that is squeezing blank lines.

The first leaves a blank line at the beginning and end if there are some already.

This one is a bit more complex and removes all empty lines at the beginning. It does leave a single blank line at end if one was there.

This removes leading and trailing blank lines. It is also the fastest. Note that loops are completely done with n and b, without relying on sed to restart the script automatically at the end of a line.

GNU sed’s limitations (and non-limitations)

For those who want to write portable sed scripts, be aware that some implementations are known to limit line lengths (for the pattern and hold spaces) to be no more than 4000 bytes. The POSIX standard specifies that conforming sed implementations shall support at least 8192 byte line lengths. GNU sed has no built-in limit on line length; as long as it can allocate more (virtual) memory, you can feed or construct lines as long as you like.

However, recursion is used to handle subpatterns and indefinite repetition. This indicates the available stack space may limit the size of the buffer that can be processed by certain patterns.

Extended regular expressions

The only difference between basic and extended regular expressions is in the behavior of a few characters: ‘?’, ‘+’, parentheses, and braces (‘<>’). While basic regular expressions require these to be escaped if you want them to behave as special characters, when using extended regular expressions you must escape them if you want them to match a literal character.

abc? Becomes ‘abc\?’ when using extended regular expressions. It matches the literal string ‘abc?’.
c\+ Becomes ‘c+’ when using extended regular expressions. It matches one or more ‘c‘s.
a\ Becomes ‘a ’ when using extended regular expressions. It matches three or more ‘a‘s.
\(abc\)\ Becomes ‘(abc) ’ when using extended regular expressions. It matches either ‘abcabc’ or ‘abcabcabc’.
\(abc*\)\1 Becomes ‘(abc*)\1’ when using extended regular expressions. Backreferences must still be escaped when using extended regular expressions.

Examples

Double-spaces the contents of file myfile.txt, and writes the output to the file newfile.txt.

Prefixes each line of myfile.txt with a line number, a period, and a space, and displays the output.

Searches for the word «test» in myfile.txt and replaces every occurrence with the word «example«.

Counts the number of lines in myfile.txt and displays the results.

awk — Interpreter for the AWK text processing programming language.
ed — A simple text editor.
grep — Filter text which matches a regular expression.
replace — A string-replacement utility.

Источник

Читайте также:  Opendiag для windows полная версия
Оцените статью