diff options
author | eadler <eadler@FreeBSD.org> | 2013-12-09 18:57:20 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2013-12-09 18:57:20 +0000 |
commit | 3fc411599250147a9219d6d9ba6afca70b25da13 (patch) | |
tree | 214a2642a24c05905d7985da3c00dfe55e0890f3 /usr.bin/sed | |
parent | aee9275df5220fb7388c273b6adda14f17a32251 (diff) | |
download | FreeBSD-src-3fc411599250147a9219d6d9ba6afca70b25da13.zip FreeBSD-src-3fc411599250147a9219d6d9ba6afca70b25da13.tar.gz |
Per the resolution of POSIX bug 0000779 (note 0002050) add support for using 'i'
as a case insensitive flag.
PR: standards/184641
Requested by: David A. Wheeler <dwheeler@dwheeler.com>
MFC After: 1 week
Diffstat (limited to 'usr.bin/sed')
-rw-r--r-- | usr.bin/sed/compile.c | 1 | ||||
-rw-r--r-- | usr.bin/sed/sed.1 | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/sed/compile.c b/usr.bin/sed/compile.c index cea8e07..e146668 100644 --- a/usr.bin/sed/compile.c +++ b/usr.bin/sed/compile.c @@ -582,6 +582,7 @@ compile_flags(char *p, struct s_subst *s) case 'p': s->p = 1; break; + case 'i': case 'I': s->icase = 1; break; diff --git a/usr.bin/sed/sed.1 b/usr.bin/sed/sed.1 index 0759889..cf27496 100644 --- a/usr.bin/sed/sed.1 +++ b/usr.bin/sed/sed.1 @@ -31,7 +31,7 @@ .\" @(#)sed.1 8.2 (Berkeley) 12/30/93 .\" $FreeBSD$ .\" -.Dd May 24, 2009 +.Dd December 9, 2013 .Dt SED 1 .Os .Sh NAME @@ -196,7 +196,7 @@ option was specified); a context address that consists of a regular expression preceded and followed by a delimiter. The closing delimiter can also optionally be followed by the -.Dq I +.Dq i character, to indicate that the regular expression is to be matched in a case-insensitive way. .El @@ -507,7 +507,7 @@ Append the pattern space to if a replacement was made. If the replacement string is identical to that which it replaces, it is still considered to have been a replacement. -.It I +.It i or I Match the regular expression in a case-insensitive way. .El .Pp |