📄 sed.1
字号:
.\" Copyright (c) 1992, 1993.\" The Regents of the University of California. All rights reserved..\".\" This code is derived from software contributed to Berkeley by.\" the Institute of Electrical and Electronics Engineers, Inc..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" @(#)sed.1 8.2 (Berkeley) 12/30/93.\".Dd "December 30, 1993".Dt SED 1.Os.Sh NAME.Nm sed.Nd stream editor.Sh SYNOPSIS.Nm sed.Op Fl an.Ar command.Op Ar file ....Nm sed.Op Fl an.Op Fl e Ar command.Op Fl f Ar command_file.Op Ar file ....Sh DESCRIPTIONThe.Nm sedutility reads the specified files, or the standard input if no filesare specified, modifying the input as specified by a list of commands.The input is then written to the standard output..PpA single command may be specified as the first argument to.Nm sed .Multiple commands may be specified by using the.Fl eor.Fl foptions.All commands are applied to the input in the order they are specifiedregardless of their origin..PpThe following options are available:.Bl -tag -width indent.It Fl aThe files listed as parameters for the.Dq wfunctions are created (or truncated) before any processing begins,by default.The.Fl aoption causes.Nm sedto delay opening each file until a command containing the related.Dq wfunction is applied to a line of input..It Fl e Ar commandAppend the editing commands specified by the.Ar commandargumentto the list of commands..It Fl f Ar command_fileAppend the editing commands found in the file.Ar command_fileto the list of commands.The editing commands should each be listed on a separate line..It Fl nBy default, each line of input is echoed to the standard output afterall of the commands have been applied to it.The.Fl noption suppresses this behavior..El.PpThe form of a.Nm sedcommand is as follows:.sp.Dl [address[,address]]function[arguments].spWhitespace may be inserted before the first address and the functionportions of the command..PpNormally,.Nm sedcyclically copies a line of input, not including its terminating newlinecharacter, into a.Em "pattern space" ,(unless there is something left after a.Dq Dfunction),applies all of the commands with addresses that select that pattern space,copies the pattern space to the standard output, appending a newline, anddeletes the pattern space..PpSome of the functions use a.Em "hold space"to save all or part of the pattern space for subsequent retrieval..Sh "Sed Addresses"An address is not required, but if specified must be a number (that countsinput linescumulatively across input files), a dollar.Po.Dq $.Pccharacter that addresses the last line of input, or a context address(which consists of a regular expression preceded and followed by adelimiter)..PpA command line with no addresses selects every pattern space..PpA command line with one address selects all of the pattern spacesthat match the address..PpA command line with two addresses selects the inclusive range fromthe first pattern space that matches the first address through the nextpattern space that matches the second.(If the second address is a number less than or equal to the line numberfirst selected, only that line is selected.)Starting at the first line following the selected range,.Nm sedstarts looking again for the first address..PpEditing commands can be applied to non-selected pattern spaces by useof the exclamation character.Po.Dq !.Pcfunction..Sh "Sed Regular Expressions"The.Nm sedregular expressions are basic regular expressions (BRE's, see.Xr regex 3for more information).In addition,.Nm sedhas the following two additions to BRE's:.sp.Bl -enum -compact.ItIn a context address, any character other than a backslash.Po.Dq \e.Pcor newline character may be used to delimit the regular expression.Also, putting a backslash character before the delimiting charactercauses the character to be treated literally.For example, in the context address \exabc\exdefx, the RE delimiteris an.Dq xand the second.Dq xstands for itself, so that the regular expression is.Dq abcxdef ..sp.ItThe escape sequence \en matches a newline character embedded in thepattern space.You can't, however, use a literal newline character in an address orin the substitute command..El.PpOne special feature of.Nm sedregular expressions is that they can default to the last regularexpression used.If a regular expression is empty, i.e. just the delimiter charactersare specified, the last regular expression encountered is used instead.The last regular expression is defined as the last regular expressionused as part of an address or substitute command, and at run-time, notcompile-time.For example, the command.Dq /abc/s//XXX/will substitute.Dq XXXfor the pattern.Dq abc ..Sh "Sed Functions"In the following list of commands, the maximum number of permissibleaddresses for each command is indicated by [0addr], [1addr], or [2addr],representing zero, one, or two addresses..PpThe argument.Em textconsists of one or more lines.To embed a newline in the text, precede it with a backslash.Other backslashes in text are deleted and the following charactertaken literally..PpThe.Dq rand.Dq wfunctions take an optional file parameter, which should be separatedfrom the function letter by white space.Each file given as an argument to.Nm sedis created (or its contents truncated) before any input processing begins..PpThe.Dq b ,.Dq r ,.Dq s ,.Dq t ,.Dq w ,.Dq y ,.Dq ! ,and.Dq \&:functions all accept additional arguments.The following synopses indicate which arguments have to be separated fromthe function letters by white space characters..PpTwo of the functions take a function-list.This is a list of.Nm sedfunctions separated by newlines, as follows:.Bd -literal -offset indent{ function function ... function}.Ed.PpThe.Dq {can be preceded by white space and can be followed by white space.The function can be preceded by white space.The terminating.Dq }must be preceded by a newline or optional white space..sp.Bl -tag -width "XXXXXX" -compact.It [2addr] function-listExecute function-list only when the pattern space is selected..sp.It [1addr]a\e.It text.brWrite.Em textto standard output immediately before each attempt to read a line of input,whether by executing the.Dq Nfunction or by beginning a new cycle..sp.It [2addr]b[lable]Branch to the.Dq \&:function with the specified label.If the label is not specified, branch to the end of the script..sp.It [2addr]c\e.It text.brDelete the pattern space.With 0 or 1 address or at the end of a 2-address range,.Em textis written to the standard output..sp.It [2addr]dDelete the pattern space and start the next cycle..sp.It [2addr]DDelete the initial segment of the pattern space through the firstnewline character and start the next cycle..sp.It [2addr]gReplace the contents of the pattern space with the contents of thehold space..sp.It [2addr]GAppend a newline character followed by the contents of the hold spaceto the pattern space..sp.It [2addr]hReplace the contents of the hold space with the contents of thepattern space..sp.It [2addr]HAppend a newline character followed by the contents of the pattern spaceto the hold space..sp.It [1addr]i\e.It text.brWrite.Em textto the standard output..sp.It [2addr]l(The letter ell.)Write the pattern space to the standard output in a visually unambiguousform.This form is as follows:.sp.Bl -tag -width "carriage-returnXX" -offset indent -compact.It backslash\e.It alert\ea.It form-feed\ef.It newline\en.It carriage-return\er.It tab\et.It vertical tab\ev.El.PpNonprintable characters are written as three-digit octal numbers (with apreceding backslash) for each byte in the character (most significant bytefirst).Long lines are folded, with the point of folding indicated by displayinga backslash followed by a newline.The end of each line is marked with a.Dq $ ..sp.It [2addr]nWrite the pattern space to the standard output if the default output hasnot been suppressed, and replace the pattern space with the next line ofinput..sp.It [2addr]NAppend the next line of input to the pattern space, using an embeddednewline character to separate the appended material from the originalcontents.Note that the current line number changes..sp.It [2addr]pWrite the pattern space to standard output..sp.It [2addr]PWrite the pattern space, up to the first newline character to thestandard output..sp.It [1addr]qBranch to the end of the script and quit without starting a new cycle..sp.It [1addr]r fileCopy the contents of.Em fileto the standard output immediately before the next attempt to read aline of input.If.Em filecannot be read for any reason, it is silently ignored and no errorcondition is set..sp.It [2addr]s/regular expression/replacement/flagsSubstitute the replacement string for the first instance of the regularexpression in the pattern space.Any character other than backslash or newline can be used instead ofa slash to delimit the RE and the replacement.Within the RE and the replacement, the RE delimiter itself can be used asa literal character if it is preceded by a backslash..PpAn ampersand.Po.Dq &.Pcappearing in the replacement is replaced by the string matching the RE.The special meaning of.Dq &in this context can be suppressed by preceding it by a backslash.The string.Dq \e# ,where.Dq #is a digit, is replaced by the text matchedby the corresponding backreference expression (see.Xr re_format 7 )..PpA line can be split by substituting a newline character into it.To specify a newline character in the replacement string, precede it witha backslash..PpThe value of.Em flagsin the substitute function is zero or more of the following:.Bl -tag -width "XXXXXX" -offset indent.It "0 ... 9"Make the substitution only for the N'th occurrence of the regularexpression in the pattern space..It gMake the substitution for all non-overlapping matches of theregular expression, not just the first one..It pWrite the pattern space to standard output if a replacement was made.If the replacement string is identical to that which it replaces, itis still considered to have been a replacement..It w Em fileAppend the pattern space to.Em fileif a replacement was made.If the replacement string is identical to that which it replaces, itis still considered to have been a replacement..El.sp.It [2addr]t [label]Branch to the.Dq :function bearing the label if any substitutions have been made since themost recent reading of an input line or execution of a.Dq tfunction.If no label is specified, branch to the end of the script..sp.It [2addr]w Em fileAppend the pattern space to the.Em file ..sp.It [2addr]xSwap the contents of the pattern and hold spaces..sp.It [2addr]y/string1/string2/Replace all occurrences of characters in.Em string1in the pattern space with the corresponding characters from.Em string2 .Any character other than a backslash or newline can be used instead ofa slash to delimit the strings.Within.Em string1and.Em string2 ,a backslash followed by any character other than a newline is that literalcharacter, and a backslash followed by an ``n'' is replaced by a newlinecharacter..sp.It [2addr]!function.It [2addr]!function-listApply the function or function-list only to the lines that are.Em notselected by the address(es)..sp.It [0addr]:labelThis function does nothing; it bears a label to which the.Dq band.Dq tcommands may branch..sp.It [1addr]=Write the line number to the standard output followed by a newlinecharacter..sp.It [0addr]Empty lines are ignored..sp.It [0addr]#The.Dq #and the remainder of the line are ignored (treated as a comment), withthe single exception that if the first two characters in the file are.Dq #n ,the default output is suppressed.This is the same as specifying the.Fl noption on the command line..El.PpThe.Nm sedutility exits 0 on success and >0 if an error occurs..Sh SEE ALSO.Xr awk 1 ,.Xr ed 1 ,.Xr grep 1 ,.Xr regex 3 ,.Xr re_format 7.Sh HISTORYA.Nm sedcommand appeared in.At v7 ..Sh STANDARDSThe.Nm sedfunction is expected to be a superset of the.St -p1003.2specification.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -