diff options
author | 2008-09-04 15:51:28 +0000 | |
---|---|---|
committer | 2008-09-04 15:51:28 +0000 | |
commit | f4b3ca7ff6225034df8d53fa68e445cf43688deb (patch) | |
tree | 6b0cf2c35395ee0b8d694274131ec6e8a75c85f9 | |
parent | - make -ln and -nl combinations behave identically. currently -l overrides -n. (diff) | |
download | wireguard-openbsd-f4b3ca7ff6225034df8d53fa68e445cf43688deb.tar.xz wireguard-openbsd-f4b3ca7ff6225034df8d53fa68e445cf43688deb.zip |
+awk does not support {n,m} pattern matching
noted by Vadim Zhukov, though slightly different (doc) fix committed;
ok millert
-rw-r--r-- | usr.bin/awk/awk.1 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/awk/awk.1 b/usr.bin/awk/awk.1 index e5fa15b909a..5a09c522eb3 100644 --- a/usr.bin/awk/awk.1 +++ b/usr.bin/awk/awk.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: awk.1,v 1.31 2008/07/25 05:09:55 deraadt Exp $ +.\" $OpenBSD: awk.1,v 1.32 2008/09/04 15:51:28 jmc Exp $ .\" EX/EE is a Bd .\" .\" Copyright (C) Lucent Technologies 1997 @@ -23,7 +23,7 @@ .\" ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF .\" THIS SOFTWARE. .\" -.Dd $Mdocdate: July 25 2008 $ +.Dd $Mdocdate: September 4 2008 $ .Dt AWK 1 .Os .Sh NAME @@ -774,6 +774,9 @@ as well as the commands .Cm fflush , compl , and , or , .Cm xor , lshift , rshift , are extensions to that specification. +.Pp +.Nm +does not support {n,m} pattern matching. .Sh HISTORY An .Nm |