Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F141994823
D54632.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D54632.diff
View Options
diff --git a/usr.bin/grep/tests/grep_freebsd_test.sh b/usr.bin/grep/tests/grep_freebsd_test.sh
--- a/usr.bin/grep/tests/grep_freebsd_test.sh
+++ b/usr.bin/grep/tests/grep_freebsd_test.sh
@@ -126,6 +126,16 @@
atf_check zgrep -q '1 2' in
}
+atf_test_case eflags
+eflags_body()
+{
+ # Test use with more than one -e expression
+ printf "aaa bbb ccc\n111 222 333\ndon't match this line" > in
+
+ atf_check -o 'inline:aaa bbb ccc\n111 222 333\n' \
+ /tmp/zgrep.sh -eaaa -e333 in
+}
+
atf_init_test_cases()
{
atf_add_test_case grep_r_implied
@@ -134,4 +144,5 @@
atf_add_test_case zflag
atf_add_test_case color_dupe
atf_add_test_case qflag
+ atf_add_test_case eflags
}
diff --git a/usr.bin/grep/zgrep.1 b/usr.bin/grep/zgrep.1
--- a/usr.bin/grep/zgrep.1
+++ b/usr.bin/grep/zgrep.1
@@ -92,21 +92,3 @@
.Nm
utility was written by
.An Thomas Klausner Aq Mt wiz@NetBSD.org .
-.Sh BUGS
-.Xr zgrep 1
-does not handle flags that take arguments if there is no whitespace
-between the flag and the argument, for example:
-.Pp
-.Dl "zgrep -enfs /etc/rpc"
-.Pp
-When more than one
-.Fl e
-flag is used matching
-should occur for any of the patterns (similar to multiple patterns
-supplied in a file with the
-.Fl f
-flag).
-.Xr zgrep 1
-only matches the last
-.Fl e
-pattern.
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 15, 3:47 PM (14 h, 29 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27624638
Default Alt Text
D54632.diff (1 KB)
Attached To
Mode
D54632: Remove obsolete BUGS section from zgrep(1) man page, add test
Attached
Detach File
Event Timeline
Log In to Comment