xref: /freebsd/usr.bin/sed/sed.1 (revision d09b527f96a5985277376cc7d23eda1aa8a48f93)
19b50d902SRodney W. Grimes.\" Copyright (c) 1992, 1993
29b50d902SRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
39b50d902SRodney W. Grimes.\"
49b50d902SRodney W. Grimes.\" This code is derived from software contributed to Berkeley by
59b50d902SRodney W. Grimes.\" the Institute of Electrical and Electronics Engineers, Inc.
69b50d902SRodney W. Grimes.\"
79b50d902SRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
89b50d902SRodney W. Grimes.\" modification, are permitted provided that the following conditions
99b50d902SRodney W. Grimes.\" are met:
109b50d902SRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
119b50d902SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
129b50d902SRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
139b50d902SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
149b50d902SRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
169b50d902SRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
179b50d902SRodney W. Grimes.\"    without specific prior written permission.
189b50d902SRodney W. Grimes.\"
199b50d902SRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
209b50d902SRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
219b50d902SRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
229b50d902SRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
239b50d902SRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
249b50d902SRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
259b50d902SRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
269b50d902SRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
279b50d902SRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
289b50d902SRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
299b50d902SRodney W. Grimes.\" SUCH DAMAGE.
309b50d902SRodney W. Grimes.\"
319b50d902SRodney W. Grimes.\"	@(#)sed.1	8.2 (Berkeley) 12/30/93
32c3aac50fSPeter Wemm.\" $FreeBSD$
339b50d902SRodney W. Grimes.\"
34*d09b527fSBrad Davis.Dd March 27, 2017
359b50d902SRodney W. Grimes.Dt SED 1
369b50d902SRodney W. Grimes.Os
379b50d902SRodney W. Grimes.Sh NAME
389b50d902SRodney W. Grimes.Nm sed
399b50d902SRodney W. Grimes.Nd stream editor
409b50d902SRodney W. Grimes.Sh SYNOPSIS
418fe908efSRuslan Ermilov.Nm
42fc39ce9eSPedro F. Giffuni.Op Fl Ealnru
439b50d902SRodney W. Grimes.Ar command
4447dec781SRuslan Ermilov.Op Ar
458fe908efSRuslan Ermilov.Nm
46701d73b6SWarner Losh.Op Fl Ealnr
479b50d902SRodney W. Grimes.Op Fl e Ar command
489b50d902SRodney W. Grimes.Op Fl f Ar command_file
49f6703c9cSYaroslav Tykhiy.Op Fl I Ar extension
50839af0c1SJuli Mallett.Op Fl i Ar extension
5147dec781SRuslan Ermilov.Op Ar
529b50d902SRodney W. Grimes.Sh DESCRIPTION
539b50d902SRodney W. GrimesThe
5473a08bb2SPhilippe Charnier.Nm
559b50d902SRodney W. Grimesutility reads the specified files, or the standard input if no files
569b50d902SRodney W. Grimesare specified, modifying the input as specified by a list of commands.
579b50d902SRodney W. GrimesThe input is then written to the standard output.
589b50d902SRodney W. Grimes.Pp
599b50d902SRodney W. GrimesA single command may be specified as the first argument to
608fe908efSRuslan Ermilov.Nm .
619b50d902SRodney W. GrimesMultiple commands may be specified by using the
629b50d902SRodney W. Grimes.Fl e
639b50d902SRodney W. Grimesor
649b50d902SRodney W. Grimes.Fl f
659b50d902SRodney W. Grimesoptions.
669b50d902SRodney W. GrimesAll commands are applied to the input in the order they are specified
679b50d902SRodney W. Grimesregardless of their origin.
689b50d902SRodney W. Grimes.Pp
699b50d902SRodney W. GrimesThe following options are available:
709b50d902SRodney W. Grimes.Bl -tag -width indent
71175de1e6SBrian Feldman.It Fl E
72175de1e6SBrian FeldmanInterpret regular expressions as extended (modern) regular expressions
730ef1d1f5SBrian Feldmanrather than basic regular expressions (BRE's).
740ef1d1f5SBrian FeldmanThe
75175de1e6SBrian Feldman.Xr re_format 7
76175de1e6SBrian Feldmanmanual page fully describes both formats.
779b50d902SRodney W. Grimes.It Fl a
789b50d902SRodney W. GrimesThe files listed as parameters for the
799b50d902SRodney W. Grimes.Dq w
809b50d902SRodney W. Grimesfunctions are created (or truncated) before any processing begins,
819b50d902SRodney W. Grimesby default.
829b50d902SRodney W. GrimesThe
839b50d902SRodney W. Grimes.Fl a
849b50d902SRodney W. Grimesoption causes
8573a08bb2SPhilippe Charnier.Nm
869b50d902SRodney W. Grimesto delay opening each file until a command containing the related
879b50d902SRodney W. Grimes.Dq w
889b50d902SRodney W. Grimesfunction is applied to a line of input.
899b50d902SRodney W. Grimes.It Fl e Ar command
909b50d902SRodney W. GrimesAppend the editing commands specified by the
919b50d902SRodney W. Grimes.Ar command
929b50d902SRodney W. Grimesargument
939b50d902SRodney W. Grimesto the list of commands.
949b50d902SRodney W. Grimes.It Fl f Ar command_file
959b50d902SRodney W. GrimesAppend the editing commands found in the file
969b50d902SRodney W. Grimes.Ar command_file
979b50d902SRodney W. Grimesto the list of commands.
989b50d902SRodney W. GrimesThe editing commands should each be listed on a separate line.
99f6703c9cSYaroslav Tykhiy.It Fl I Ar extension
100839af0c1SJuli MallettEdit files in-place, saving backups with the specified
101839af0c1SJuli Mallett.Ar extension .
1025d16412dSJuli MallettIf a zero-length
1035d16412dSJuli Mallett.Ar extension
1045d16412dSJuli Mallettis given, no backup will be saved.
1055d16412dSJuli MallettIt is not recommended to give a zero-length
1065d16412dSJuli Mallett.Ar extension
1075d16412dSJuli Mallettwhen in-place editing files, as you risk corruption or partial content
1085d16412dSJuli Mallettin situations where disk space is exhausted, etc.
109f6703c9cSYaroslav Tykhiy.Pp
110f6703c9cSYaroslav TykhiyNote that in-place editing with
111f6703c9cSYaroslav Tykhiy.Fl I
112f6703c9cSYaroslav Tykhiystill takes place in a single continuous line address space covering
113f6703c9cSYaroslav Tykhiyall files, although each file preserves its individuality instead of
114f6703c9cSYaroslav Tykhiyforming one output stream.
115f6703c9cSYaroslav TykhiyThe line counter is never reset between files, address ranges can span
116f6703c9cSYaroslav Tykhiyfile boundaries, and the
117f6703c9cSYaroslav Tykhiy.Dq $
118f6703c9cSYaroslav Tykhiyaddress matches only the last line of the last file.
119f6703c9cSYaroslav Tykhiy(See
120f6703c9cSYaroslav Tykhiy.Sx "Sed Addresses" . )
121f6703c9cSYaroslav TykhiyThat can lead to unexpected results in many cases of in-place editing,
122f6703c9cSYaroslav Tykhiywhere using
123f6703c9cSYaroslav Tykhiy.Fl i
124f6703c9cSYaroslav Tykhiyis desired.
125f6703c9cSYaroslav Tykhiy.It Fl i Ar extension
126f6703c9cSYaroslav TykhiyEdit files in-place similarly to
127f6703c9cSYaroslav Tykhiy.Fl I ,
128f6703c9cSYaroslav Tykhiybut treat each file independently from other files.
129f6703c9cSYaroslav TykhiyIn particular, line numbers in each file start at 1,
130f6703c9cSYaroslav Tykhiythe
131f6703c9cSYaroslav Tykhiy.Dq $
132f6703c9cSYaroslav Tykhiyaddress matches the last line of the current file,
133f6703c9cSYaroslav Tykhiyand address ranges are limited to the current file.
134f6703c9cSYaroslav Tykhiy(See
135f6703c9cSYaroslav Tykhiy.Sx "Sed Addresses" . )
136f6703c9cSYaroslav TykhiyThe net result is as though each file were edited by a separate
137f6703c9cSYaroslav Tykhiy.Nm
138f6703c9cSYaroslav Tykhiyinstance.
1391ed86f6cSGleb Smirnoff.It Fl l
1401ed86f6cSGleb SmirnoffMake output line buffered.
1419b50d902SRodney W. Grimes.It Fl n
1429b50d902SRodney W. GrimesBy default, each line of input is echoed to the standard output after
1439b50d902SRodney W. Grimesall of the commands have been applied to it.
1449b50d902SRodney W. GrimesThe
1459b50d902SRodney W. Grimes.Fl n
1469b50d902SRodney W. Grimesoption suppresses this behavior.
147701d73b6SWarner Losh.It Fl r
148701d73b6SWarner LoshSame as
149701d73b6SWarner Losh.Fl E
150701d73b6SWarner Loshfor compatibility with GNU sed.
151fc39ce9eSPedro F. Giffuni.It Fl u
152fc39ce9eSPedro F. GiffuniMake output unbuffered.
1539b50d902SRodney W. Grimes.El
1549b50d902SRodney W. Grimes.Pp
1559b50d902SRodney W. GrimesThe form of a
15673a08bb2SPhilippe Charnier.Nm
1579b50d902SRodney W. Grimescommand is as follows:
158726b61abSRuslan Ermilov.Pp
1599b50d902SRodney W. Grimes.Dl [address[,address]]function[arguments]
160726b61abSRuslan Ermilov.Pp
1619b50d902SRodney W. GrimesWhitespace may be inserted before the first address and the function
1629b50d902SRodney W. Grimesportions of the command.
1639b50d902SRodney W. Grimes.Pp
1649b50d902SRodney W. GrimesNormally,
16573a08bb2SPhilippe Charnier.Nm
1669b50d902SRodney W. Grimescyclically copies a line of input, not including its terminating newline
1679b50d902SRodney W. Grimescharacter, into a
1689b50d902SRodney W. Grimes.Em "pattern space" ,
1699b50d902SRodney W. Grimes(unless there is something left after a
1709b50d902SRodney W. Grimes.Dq D
1719b50d902SRodney W. Grimesfunction),
1729b50d902SRodney W. Grimesapplies all of the commands with addresses that select that pattern space,
1739b50d902SRodney W. Grimescopies the pattern space to the standard output, appending a newline, and
1749b50d902SRodney W. Grimesdeletes the pattern space.
1759b50d902SRodney W. Grimes.Pp
1769b50d902SRodney W. GrimesSome of the functions use a
1779b50d902SRodney W. Grimes.Em "hold space"
1789b50d902SRodney W. Grimesto save all or part of the pattern space for subsequent retrieval.
1799b50d902SRodney W. Grimes.Sh "Sed Addresses"
180f6703c9cSYaroslav TykhiyAn address is not required, but if specified must have one of the
181f6703c9cSYaroslav Tykhiyfollowing formats:
182f6703c9cSYaroslav Tykhiy.Bl -bullet -offset indent
183f6703c9cSYaroslav Tykhiy.It
184f6703c9cSYaroslav Tykhiya number that counts
1859b50d902SRodney W. Grimesinput lines
186f6703c9cSYaroslav Tykhiycumulatively across input files (or in each file independently
187f6703c9cSYaroslav Tykhiyif a
188f6703c9cSYaroslav Tykhiy.Fl i
189f6703c9cSYaroslav Tykhiyoption is in effect);
190f6703c9cSYaroslav Tykhiy.It
191f6703c9cSYaroslav Tykhiya dollar
192c4d9468eSRuslan Ermilov.Pq Dq $
193f6703c9cSYaroslav Tykhiycharacter that addresses the last line of input (or the last line
194f6703c9cSYaroslav Tykhiyof the current file if a
195f6703c9cSYaroslav Tykhiy.Fl i
196f6703c9cSYaroslav Tykhiyoption was specified);
197f6703c9cSYaroslav Tykhiy.It
198f6703c9cSYaroslav Tykhiya context address
199f6703c9cSYaroslav Tykhiythat consists of a regular expression preceded and followed by a
200bdd72b70SSuleiman Souhlaldelimiter. The closing delimiter can also optionally be followed by the
2016351d609SPedro F. Giffuni.Dq I
202bdd72b70SSuleiman Souhlalcharacter, to indicate that the regular expression is to be matched
203bdd72b70SSuleiman Souhlalin a case-insensitive way.
204f6703c9cSYaroslav Tykhiy.El
2059b50d902SRodney W. Grimes.Pp
2069b50d902SRodney W. GrimesA command line with no addresses selects every pattern space.
2079b50d902SRodney W. Grimes.Pp
2089b50d902SRodney W. GrimesA command line with one address selects all of the pattern spaces
2099b50d902SRodney W. Grimesthat match the address.
2109b50d902SRodney W. Grimes.Pp
2116a3e8b0aSRuslan ErmilovA command line with two addresses selects an inclusive range.
2126a3e8b0aSRuslan ErmilovThis
2131d2ed2f7SBill Swinglerange starts with the first pattern space that matches the first
2146a3e8b0aSRuslan Ermilovaddress.
2156a3e8b0aSRuslan ErmilovThe end of the range is the next following pattern space
2166a3e8b0aSRuslan Ermilovthat matches the second address.
2176a3e8b0aSRuslan ErmilovIf the second address is a number
2181d2ed2f7SBill Swingleless than or equal to the line number first selected, only that
2196a3e8b0aSRuslan Ermilovline is selected.
220f879e8d9SBrian SomersThe number in the second address may be prefixed with a
221f879e8d9SBrian Somers.Pq Dq \&+
222f879e8d9SBrian Somersto specify the number of lines to match after the first pattern.
2236a3e8b0aSRuslan ErmilovIn the case when the second address is a context
224b6059c5cSDiomidis Spinellisaddress,
225b6059c5cSDiomidis Spinellis.Nm
226b6059c5cSDiomidis Spinellisdoes not re-match the second address against the
2276a3e8b0aSRuslan Ermilovpattern space that matched the first address.
2286a3e8b0aSRuslan ErmilovStarting at the
2292642bed2SGiorgos Keramidasfirst line following the selected range,
23073a08bb2SPhilippe Charnier.Nm
2319b50d902SRodney W. Grimesstarts looking again for the first address.
2329b50d902SRodney W. Grimes.Pp
2339b50d902SRodney W. GrimesEditing commands can be applied to non-selected pattern spaces by use
2349b50d902SRodney W. Grimesof the exclamation character
235c4d9468eSRuslan Ermilov.Pq Dq \&!
2369b50d902SRodney W. Grimesfunction.
2379b50d902SRodney W. Grimes.Sh "Sed Regular Expressions"
2380ef1d1f5SBrian FeldmanThe regular expressions used in
2398fe908efSRuslan Ermilov.Nm ,
2400ef1d1f5SBrian Feldmanby default, are basic regular expressions (BREs, see
2410ef1d1f5SBrian Feldman.Xr re_format 7
242ca802a8aSPhilippe Charnierfor more information), but extended (modern) regular expressions can be used
243ca802a8aSPhilippe Charnierinstead if the
244175de1e6SBrian Feldman.Fl E
2450ef1d1f5SBrian Feldmanflag is given.
2460ef1d1f5SBrian FeldmanIn addition,
247175de1e6SBrian Feldman.Nm
248175de1e6SBrian Feldmanhas the following two additions to regular expressions:
249726b61abSRuslan Ermilov.Pp
2509b50d902SRodney W. Grimes.Bl -enum -compact
2519b50d902SRodney W. Grimes.It
2529b50d902SRodney W. GrimesIn a context address, any character other than a backslash
253c4d9468eSRuslan Ermilov.Pq Dq \e
2549b50d902SRodney W. Grimesor newline character may be used to delimit the regular expression.
255625451f9SYaroslav TykhiyThe opening delimiter needs to be preceded by a backslash
256625451f9SYaroslav Tykhiyunless it is a slash.
257625451f9SYaroslav TykhiyFor example, the context address
258625451f9SYaroslav Tykhiy.Li \exabcx
259625451f9SYaroslav Tykhiyis equivalent to
260625451f9SYaroslav Tykhiy.Li /abc/ .
2619b50d902SRodney W. GrimesAlso, putting a backslash character before the delimiting character
262db6fc083SYaroslav Tykhiywithin the regular expression causes the character to be treated literally.
263625451f9SYaroslav TykhiyFor example, in the context address
264625451f9SYaroslav Tykhiy.Li \exabc\exdefx ,
265625451f9SYaroslav Tykhiythe RE delimiter is an
2669b50d902SRodney W. Grimes.Dq x
2679b50d902SRodney W. Grimesand the second
2689b50d902SRodney W. Grimes.Dq x
2699b50d902SRodney W. Grimesstands for itself, so that the regular expression is
2709b50d902SRodney W. Grimes.Dq abcxdef .
271726b61abSRuslan Ermilov.Pp
2729b50d902SRodney W. Grimes.It
2739b50d902SRodney W. GrimesThe escape sequence \en matches a newline character embedded in the
2749b50d902SRodney W. Grimespattern space.
2750227791bSRuslan ErmilovYou cannot, however, use a literal newline character in an address or
2769b50d902SRodney W. Grimesin the substitute command.
2779b50d902SRodney W. Grimes.El
2789b50d902SRodney W. Grimes.Pp
2799b50d902SRodney W. GrimesOne special feature of
28073a08bb2SPhilippe Charnier.Nm
2819b50d902SRodney W. Grimesregular expressions is that they can default to the last regular
2829b50d902SRodney W. Grimesexpression used.
2836a3e8b0aSRuslan ErmilovIf a regular expression is empty, i.e., just the delimiter characters
2849b50d902SRodney W. Grimesare specified, the last regular expression encountered is used instead.
2859b50d902SRodney W. GrimesThe last regular expression is defined as the last regular expression
2869b50d902SRodney W. Grimesused as part of an address or substitute command, and at run-time, not
2879b50d902SRodney W. Grimescompile-time.
2889b50d902SRodney W. GrimesFor example, the command
2899b50d902SRodney W. Grimes.Dq /abc/s//XXX/
2909b50d902SRodney W. Grimeswill substitute
2919b50d902SRodney W. Grimes.Dq XXX
2929b50d902SRodney W. Grimesfor the pattern
2939b50d902SRodney W. Grimes.Dq abc .
2949b50d902SRodney W. Grimes.Sh "Sed Functions"
2959b50d902SRodney W. GrimesIn the following list of commands, the maximum number of permissible
2969b50d902SRodney W. Grimesaddresses for each command is indicated by [0addr], [1addr], or [2addr],
2979b50d902SRodney W. Grimesrepresenting zero, one, or two addresses.
2989b50d902SRodney W. Grimes.Pp
2999b50d902SRodney W. GrimesThe argument
3009b50d902SRodney W. Grimes.Em text
3019b50d902SRodney W. Grimesconsists of one or more lines.
3029b50d902SRodney W. GrimesTo embed a newline in the text, precede it with a backslash.
3039b50d902SRodney W. GrimesOther backslashes in text are deleted and the following character
3049b50d902SRodney W. Grimestaken literally.
3059b50d902SRodney W. Grimes.Pp
3069b50d902SRodney W. GrimesThe
3079b50d902SRodney W. Grimes.Dq r
3089b50d902SRodney W. Grimesand
3099b50d902SRodney W. Grimes.Dq w
3109b50d902SRodney W. Grimesfunctions take an optional file parameter, which should be separated
3119b50d902SRodney W. Grimesfrom the function letter by white space.
3129b50d902SRodney W. GrimesEach file given as an argument to
31373a08bb2SPhilippe Charnier.Nm
3149b50d902SRodney W. Grimesis created (or its contents truncated) before any input processing begins.
3159b50d902SRodney W. Grimes.Pp
3169b50d902SRodney W. GrimesThe
3179b50d902SRodney W. Grimes.Dq b ,
3189b50d902SRodney W. Grimes.Dq r ,
3199b50d902SRodney W. Grimes.Dq s ,
3209b50d902SRodney W. Grimes.Dq t ,
3219b50d902SRodney W. Grimes.Dq w ,
3229b50d902SRodney W. Grimes.Dq y ,
3239b88faecSRuslan Ermilov.Dq \&! ,
3249b50d902SRodney W. Grimesand
3259b50d902SRodney W. Grimes.Dq \&:
3269b50d902SRodney W. Grimesfunctions all accept additional arguments.
3279b50d902SRodney W. GrimesThe following synopses indicate which arguments have to be separated from
3289b50d902SRodney W. Grimesthe function letters by white space characters.
3299b50d902SRodney W. Grimes.Pp
3309b50d902SRodney W. GrimesTwo of the functions take a function-list.
3319b50d902SRodney W. GrimesThis is a list of
33273a08bb2SPhilippe Charnier.Nm
3339b50d902SRodney W. Grimesfunctions separated by newlines, as follows:
3349b50d902SRodney W. Grimes.Bd -literal -offset indent
3359b50d902SRodney W. Grimes{ function
3369b50d902SRodney W. Grimes  function
3379b50d902SRodney W. Grimes  ...
3389b50d902SRodney W. Grimes  function
3399b50d902SRodney W. Grimes}
3409b50d902SRodney W. Grimes.Ed
3419b50d902SRodney W. Grimes.Pp
3429b50d902SRodney W. GrimesThe
3439b50d902SRodney W. Grimes.Dq {
3449b50d902SRodney W. Grimescan be preceded by white space and can be followed by white space.
3459b50d902SRodney W. GrimesThe function can be preceded by white space.
3469b50d902SRodney W. GrimesThe terminating
3479b50d902SRodney W. Grimes.Dq }
3487d3c2941SAndrey A. Chernovmust be preceded by a newline, and may also be preceded by white space.
349726b61abSRuslan Ermilov.Pp
3509b50d902SRodney W. Grimes.Bl -tag -width "XXXXXX" -compact
3519b50d902SRodney W. Grimes.It [2addr] function-list
3529b50d902SRodney W. GrimesExecute function-list only when the pattern space is selected.
353726b61abSRuslan Ermilov.Pp
3549b50d902SRodney W. Grimes.It [1addr]a\e
3559b50d902SRodney W. Grimes.It text
3569b50d902SRodney W. GrimesWrite
3579b50d902SRodney W. Grimes.Em text
3589b50d902SRodney W. Grimesto standard output immediately before each attempt to read a line of input,
3599b50d902SRodney W. Grimeswhether by executing the
3609b50d902SRodney W. Grimes.Dq N
3619b50d902SRodney W. Grimesfunction or by beginning a new cycle.
362726b61abSRuslan Ermilov.Pp
36353daef24SAndreas Schulz.It [2addr]b[label]
3649b50d902SRodney W. GrimesBranch to the
3659b50d902SRodney W. Grimes.Dq \&:
3669b50d902SRodney W. Grimesfunction with the specified label.
3679b50d902SRodney W. GrimesIf the label is not specified, branch to the end of the script.
368726b61abSRuslan Ermilov.Pp
3699b50d902SRodney W. Grimes.It [2addr]c\e
3709b50d902SRodney W. Grimes.It text
3719b50d902SRodney W. GrimesDelete the pattern space.
3729b50d902SRodney W. GrimesWith 0 or 1 address or at the end of a 2-address range,
3739b50d902SRodney W. Grimes.Em text
3749b50d902SRodney W. Grimesis written to the standard output.
375726b61abSRuslan Ermilov.Pp
3769b50d902SRodney W. Grimes.It [2addr]d
3779b50d902SRodney W. GrimesDelete the pattern space and start the next cycle.
378726b61abSRuslan Ermilov.Pp
3799b50d902SRodney W. Grimes.It [2addr]D
3809b50d902SRodney W. GrimesDelete the initial segment of the pattern space through the first
3819b50d902SRodney W. Grimesnewline character and start the next cycle.
382726b61abSRuslan Ermilov.Pp
3839b50d902SRodney W. Grimes.It [2addr]g
3849b50d902SRodney W. GrimesReplace the contents of the pattern space with the contents of the
3859b50d902SRodney W. Grimeshold space.
386726b61abSRuslan Ermilov.Pp
3879b50d902SRodney W. Grimes.It [2addr]G
3889b50d902SRodney W. GrimesAppend a newline character followed by the contents of the hold space
3899b50d902SRodney W. Grimesto the pattern space.
390726b61abSRuslan Ermilov.Pp
3919b50d902SRodney W. Grimes.It [2addr]h
3929b50d902SRodney W. GrimesReplace the contents of the hold space with the contents of the
3939b50d902SRodney W. Grimespattern space.
394726b61abSRuslan Ermilov.Pp
3959b50d902SRodney W. Grimes.It [2addr]H
3969b50d902SRodney W. GrimesAppend a newline character followed by the contents of the pattern space
3979b50d902SRodney W. Grimesto the hold space.
398726b61abSRuslan Ermilov.Pp
3999b50d902SRodney W. Grimes.It [1addr]i\e
4009b50d902SRodney W. Grimes.It text
4019b50d902SRodney W. GrimesWrite
4029b50d902SRodney W. Grimes.Em text
4039b50d902SRodney W. Grimesto the standard output.
404726b61abSRuslan Ermilov.Pp
4059b50d902SRodney W. Grimes.It [2addr]l
4069b50d902SRodney W. Grimes(The letter ell.)
4079b50d902SRodney W. GrimesWrite the pattern space to the standard output in a visually unambiguous
4089b50d902SRodney W. Grimesform.
4099b50d902SRodney W. GrimesThis form is as follows:
410726b61abSRuslan Ermilov.Pp
4119b50d902SRodney W. Grimes.Bl -tag -width "carriage-returnXX" -offset indent -compact
4129b50d902SRodney W. Grimes.It backslash
41307847cc8SMike Pritchard\e\e
4149b50d902SRodney W. Grimes.It alert
4159b50d902SRodney W. Grimes\ea
4169b50d902SRodney W. Grimes.It form-feed
4179b50d902SRodney W. Grimes\ef
4189b50d902SRodney W. Grimes.It carriage-return
4199b50d902SRodney W. Grimes\er
4209b50d902SRodney W. Grimes.It tab
4219b50d902SRodney W. Grimes\et
4229b50d902SRodney W. Grimes.It vertical tab
4239b50d902SRodney W. Grimes\ev
4249b50d902SRodney W. Grimes.El
4259b50d902SRodney W. Grimes.Pp
4269b50d902SRodney W. GrimesNonprintable characters are written as three-digit octal numbers (with a
4279b50d902SRodney W. Grimespreceding backslash) for each byte in the character (most significant byte
4289b50d902SRodney W. Grimesfirst).
4299b50d902SRodney W. GrimesLong lines are folded, with the point of folding indicated by displaying
4309b50d902SRodney W. Grimesa backslash followed by a newline.
4319b50d902SRodney W. GrimesThe end of each line is marked with a
4329b50d902SRodney W. Grimes.Dq $ .
433726b61abSRuslan Ermilov.Pp
4349b50d902SRodney W. Grimes.It [2addr]n
4359b50d902SRodney W. GrimesWrite the pattern space to the standard output if the default output has
4369b50d902SRodney W. Grimesnot been suppressed, and replace the pattern space with the next line of
4379b50d902SRodney W. Grimesinput.
438726b61abSRuslan Ermilov.Pp
4399b50d902SRodney W. Grimes.It [2addr]N
4409b50d902SRodney W. GrimesAppend the next line of input to the pattern space, using an embedded
4419b50d902SRodney W. Grimesnewline character to separate the appended material from the original
4429b50d902SRodney W. Grimescontents.
4439b50d902SRodney W. GrimesNote that the current line number changes.
444726b61abSRuslan Ermilov.Pp
4459b50d902SRodney W. Grimes.It [2addr]p
4469b50d902SRodney W. GrimesWrite the pattern space to standard output.
447726b61abSRuslan Ermilov.Pp
4489b50d902SRodney W. Grimes.It [2addr]P
4499b50d902SRodney W. GrimesWrite the pattern space, up to the first newline character to the
4509b50d902SRodney W. Grimesstandard output.
451726b61abSRuslan Ermilov.Pp
4529b50d902SRodney W. Grimes.It [1addr]q
4539b50d902SRodney W. GrimesBranch to the end of the script and quit without starting a new cycle.
454726b61abSRuslan Ermilov.Pp
4559b50d902SRodney W. Grimes.It [1addr]r file
4569b50d902SRodney W. GrimesCopy the contents of
4579b50d902SRodney W. Grimes.Em file
4589b50d902SRodney W. Grimesto the standard output immediately before the next attempt to read a
4599b50d902SRodney W. Grimesline of input.
4609b50d902SRodney W. GrimesIf
4619b50d902SRodney W. Grimes.Em file
4629b50d902SRodney W. Grimescannot be read for any reason, it is silently ignored and no error
4639b50d902SRodney W. Grimescondition is set.
464726b61abSRuslan Ermilov.Pp
4659b50d902SRodney W. Grimes.It [2addr]s/regular expression/replacement/flags
4669b50d902SRodney W. GrimesSubstitute the replacement string for the first instance of the regular
4679b50d902SRodney W. Grimesexpression in the pattern space.
4689b50d902SRodney W. GrimesAny character other than backslash or newline can be used instead of
4699b50d902SRodney W. Grimesa slash to delimit the RE and the replacement.
4709b50d902SRodney W. GrimesWithin the RE and the replacement, the RE delimiter itself can be used as
4719b50d902SRodney W. Grimesa literal character if it is preceded by a backslash.
4729b50d902SRodney W. Grimes.Pp
4739b50d902SRodney W. GrimesAn ampersand
474c4d9468eSRuslan Ermilov.Pq Dq &
4759b50d902SRodney W. Grimesappearing in the replacement is replaced by the string matching the RE.
4769b50d902SRodney W. GrimesThe special meaning of
4779b50d902SRodney W. Grimes.Dq &
4789b50d902SRodney W. Grimesin this context can be suppressed by preceding it by a backslash.
4799b50d902SRodney W. GrimesThe string
4809b50d902SRodney W. Grimes.Dq \e# ,
4819b50d902SRodney W. Grimeswhere
4829b50d902SRodney W. Grimes.Dq #
4839b50d902SRodney W. Grimesis a digit, is replaced by the text matched
4849b50d902SRodney W. Grimesby the corresponding backreference expression (see
4859b50d902SRodney W. Grimes.Xr re_format 7 ) .
4869b50d902SRodney W. Grimes.Pp
4879b50d902SRodney W. GrimesA line can be split by substituting a newline character into it.
4889b50d902SRodney W. GrimesTo specify a newline character in the replacement string, precede it with
4899b50d902SRodney W. Grimesa backslash.
4909b50d902SRodney W. Grimes.Pp
4919b50d902SRodney W. GrimesThe value of
4929b50d902SRodney W. Grimes.Em flags
4939b50d902SRodney W. Grimesin the substitute function is zero or more of the following:
4949b50d902SRodney W. Grimes.Bl -tag -width "XXXXXX" -offset indent
49506e482e6SRuslan Ermilov.It Ar N
4961fa600e8STim J. RobbinsMake the substitution only for the
49706e482e6SRuslan Ermilov.Ar N Ns 'th
4981fa600e8STim J. Robbinsoccurrence of the regular expression in the pattern space.
4999b50d902SRodney W. Grimes.It g
5009b50d902SRodney W. GrimesMake the substitution for all non-overlapping matches of the
5019b50d902SRodney W. Grimesregular expression, not just the first one.
5029b50d902SRodney W. Grimes.It p
5039b50d902SRodney W. GrimesWrite the pattern space to standard output if a replacement was made.
5049b50d902SRodney W. GrimesIf the replacement string is identical to that which it replaces, it
5059b50d902SRodney W. Grimesis still considered to have been a replacement.
5069b50d902SRodney W. Grimes.It w Em file
5079b50d902SRodney W. GrimesAppend the pattern space to
5089b50d902SRodney W. Grimes.Em file
5099b50d902SRodney W. Grimesif a replacement was made.
5109b50d902SRodney W. GrimesIf the replacement string is identical to that which it replaces, it
5119b50d902SRodney W. Grimesis still considered to have been a replacement.
51249e89014SEitan Adler.It i or I
513bdd72b70SSuleiman SouhlalMatch the regular expression in a case-insensitive way.
5149b50d902SRodney W. Grimes.El
515726b61abSRuslan Ermilov.Pp
5169b50d902SRodney W. Grimes.It [2addr]t [label]
5179b50d902SRodney W. GrimesBranch to the
5189edc38efSSteve Price.Dq \&:
5199b50d902SRodney W. Grimesfunction bearing the label if any substitutions have been made since the
5209b50d902SRodney W. Grimesmost recent reading of an input line or execution of a
5219b50d902SRodney W. Grimes.Dq t
5229b50d902SRodney W. Grimesfunction.
5239b50d902SRodney W. GrimesIf no label is specified, branch to the end of the script.
524726b61abSRuslan Ermilov.Pp
5259b50d902SRodney W. Grimes.It [2addr]w Em file
5269b50d902SRodney W. GrimesAppend the pattern space to the
5279b50d902SRodney W. Grimes.Em file .
528726b61abSRuslan Ermilov.Pp
5299b50d902SRodney W. Grimes.It [2addr]x
5309b50d902SRodney W. GrimesSwap the contents of the pattern and hold spaces.
531726b61abSRuslan Ermilov.Pp
5329b50d902SRodney W. Grimes.It [2addr]y/string1/string2/
5339b50d902SRodney W. GrimesReplace all occurrences of characters in
5349b50d902SRodney W. Grimes.Em string1
5359b50d902SRodney W. Grimesin the pattern space with the corresponding characters from
5369b50d902SRodney W. Grimes.Em string2 .
5379b50d902SRodney W. GrimesAny character other than a backslash or newline can be used instead of
5389b50d902SRodney W. Grimesa slash to delimit the strings.
5399b50d902SRodney W. GrimesWithin
5409b50d902SRodney W. Grimes.Em string1
5419b50d902SRodney W. Grimesand
5429b50d902SRodney W. Grimes.Em string2 ,
5439b50d902SRodney W. Grimesa backslash followed by any character other than a newline is that literal
5449b50d902SRodney W. Grimescharacter, and a backslash followed by an ``n'' is replaced by a newline
5459b50d902SRodney W. Grimescharacter.
546726b61abSRuslan Ermilov.Pp
5479b50d902SRodney W. Grimes.It [2addr]!function
5489b50d902SRodney W. Grimes.It [2addr]!function-list
5499b50d902SRodney W. GrimesApply the function or function-list only to the lines that are
5509b50d902SRodney W. Grimes.Em not
5519b50d902SRodney W. Grimesselected by the address(es).
552726b61abSRuslan Ermilov.Pp
5539b50d902SRodney W. Grimes.It [0addr]:label
5549b50d902SRodney W. GrimesThis function does nothing; it bears a label to which the
5559b50d902SRodney W. Grimes.Dq b
5569b50d902SRodney W. Grimesand
5579b50d902SRodney W. Grimes.Dq t
5589b50d902SRodney W. Grimescommands may branch.
559726b61abSRuslan Ermilov.Pp
5609b50d902SRodney W. Grimes.It [1addr]=
5619b50d902SRodney W. GrimesWrite the line number to the standard output followed by a newline
5629b50d902SRodney W. Grimescharacter.
563726b61abSRuslan Ermilov.Pp
5649b50d902SRodney W. Grimes.It [0addr]
5659b50d902SRodney W. GrimesEmpty lines are ignored.
566726b61abSRuslan Ermilov.Pp
5679b50d902SRodney W. Grimes.It [0addr]#
5689b50d902SRodney W. GrimesThe
5699b50d902SRodney W. Grimes.Dq #
5709b50d902SRodney W. Grimesand the remainder of the line are ignored (treated as a comment), with
5719b50d902SRodney W. Grimesthe single exception that if the first two characters in the file are
5729b50d902SRodney W. Grimes.Dq #n ,
5739b50d902SRodney W. Grimesthe default output is suppressed.
5749b50d902SRodney W. GrimesThis is the same as specifying the
5759b50d902SRodney W. Grimes.Fl n
5769b50d902SRodney W. Grimesoption on the command line.
5779b50d902SRodney W. Grimes.El
57830e9580eSTim J. Robbins.Sh ENVIRONMENT
57930e9580eSTim J. RobbinsThe
58006e482e6SRuslan Ermilov.Ev COLUMNS , LANG , LC_ALL , LC_CTYPE
581e7cc3a21STim J. Robbinsand
582e7cc3a21STim J. Robbins.Ev LC_COLLATE
583e7cc3a21STim J. Robbinsenvironment variables affect the execution of
58430e9580eSTim J. Robbins.Nm
585e7cc3a21STim J. Robbinsas described in
586e7cc3a21STim J. Robbins.Xr environ 7 .
587a866e170SRuslan Ermilov.Sh EXIT STATUS
588d628d776SRuslan Ermilov.Ex -std
589*d09b527fSBrad Davis.Sh EXAMPLES
590*d09b527fSBrad DavisReplace
591*d09b527fSBrad Davis.Ql bar
592*d09b527fSBrad Daviswith
593*d09b527fSBrad Davis.Ql baz
594*d09b527fSBrad Daviswhen piped from another command:
595*d09b527fSBrad Davis.Bd -literal -offset indent
596*d09b527fSBrad Davisecho "An alternate word, like bar, is sometimes used in examples." | sed 's/bar/baz/'
597*d09b527fSBrad Davis.Ed
598*d09b527fSBrad Davis.Pp
599*d09b527fSBrad DavisUsing backlashes can sometimes be hard to read and follow:
600*d09b527fSBrad Davis.Bd -literal -offset indent
601*d09b527fSBrad Davisecho "/home/example" | sed  's/\\/home\\/example/\\/usr\\/local\\/example/'
602*d09b527fSBrad Davis.Ed
603*d09b527fSBrad Davis.Pp
604*d09b527fSBrad DavisUsing a different separator can be handy when working with paths:
605*d09b527fSBrad Davis.Bd -literal -offset indent
606*d09b527fSBrad Davisecho "/home/example" | sed 's#/home/example#/usr/local/example#'
607*d09b527fSBrad Davis.Ed
608*d09b527fSBrad Davis.Pp
609*d09b527fSBrad DavisReplace all occurances of
610*d09b527fSBrad Davis.Ql foo
611*d09b527fSBrad Daviswith
612*d09b527fSBrad Davis.Ql bar
613*d09b527fSBrad Davisin the file
614*d09b527fSBrad Davis.Pa test.txt ,
615*d09b527fSBrad Daviswithout creating a backup of the file:
616*d09b527fSBrad Davis.Bd -literal -offset indent
617*d09b527fSBrad Davissed -i '' -e 's/foo/bar/' test.txt
618*d09b527fSBrad Davis.Ed
6199b50d902SRodney W. Grimes.Sh SEE ALSO
6209b50d902SRodney W. Grimes.Xr awk 1 ,
6219b50d902SRodney W. Grimes.Xr ed 1 ,
6229b50d902SRodney W. Grimes.Xr grep 1 ,
6239b50d902SRodney W. Grimes.Xr regex 3 ,
6249b50d902SRodney W. Grimes.Xr re_format 7
6259b50d902SRodney W. Grimes.Sh STANDARDS
6269b50d902SRodney W. GrimesThe
62773a08bb2SPhilippe Charnier.Nm
62842676968STim J. Robbinsutility is expected to be a superset of the
6299b50d902SRodney W. Grimes.St -p1003.2
6309b50d902SRodney W. Grimesspecification.
631839af0c1SJuli Mallett.Pp
632839af0c1SJuli MallettThe
633f6703c9cSYaroslav Tykhiy.Fl E , I , a
634220d8b58STim J. Robbinsand
635839af0c1SJuli Mallett.Fl i
636f879e8d9SBrian Somersoptions, the prefixing
637f879e8d9SBrian Somers.Dq \&+
638f879e8d9SBrian Somersin the second member of an address range,
639f879e8d9SBrian Somersas well as the
640bdd72b70SSuleiman Souhlal.Dq I
641bdd72b70SSuleiman Souhlalflag to the address regular expression and substitution command are
642bdd72b70SSuleiman Souhlalnon-standard
643839af0c1SJuli Mallett.Fx
644220d8b58STim J. Robbinsextensions and may not be available on other operating systems.
64542676968STim J. Robbins.Sh HISTORY
64642676968STim J. RobbinsA
64742676968STim J. Robbins.Nm
6486a3e8b0aSRuslan Ermilovcommand, written by
6496a3e8b0aSRuslan Ermilov.An L. E. McMahon ,
6506a3e8b0aSRuslan Ermilovappeared in
65142676968STim J. Robbins.At v7 .
652b6059c5cSDiomidis Spinellis.Sh AUTHORS
6532b7af31cSBaptiste Daroussin.An Diomidis D. Spinellis Aq Mt dds@FreeBSD.org
6544f45d811STim J. Robbins.Sh BUGS
6558b086367STim J. RobbinsMultibyte characters containing a byte with value 0x5C
6564438d91eSRuslan Ermilov.Tn ( ASCII
6574438d91eSRuslan Ermilov.Ql \e )
6588b086367STim J. Robbinsmay be incorrectly treated as line continuation characters in arguments to the
6598b086367STim J. Robbins.Dq a ,
6608b086367STim J. Robbins.Dq c
6618b086367STim J. Robbinsand
6628b086367STim J. Robbins.Dq i
6638b086367STim J. Robbinscommands.
664e4d0177fSTim J. RobbinsMultibyte characters cannot be used as delimiters with the
665e4d0177fSTim J. Robbins.Dq s
666e4d0177fSTim J. Robbinsand
667e4d0177fSTim J. Robbins.Dq y
668e4d0177fSTim J. Robbinscommands.
669