diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-08-07 17:39:35 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-08-07 17:39:35 +0000 |
| commit | db6191194b901bab5be8ea6203d8433cb73d830d (patch) | |
| tree | 20c57e0457f63ba9ad47d3b81a7aaae9376d87c0 /gnu | |
| parent | 09b1c35707215194d9356c3df319f6aa3c16f84a (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/man/apropos/apropos.man | 2 | ||||
| -rw-r--r-- | gnu/usr.bin/man/apropos/apropos.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/man/apropos/apropos.man b/gnu/usr.bin/man/apropos/apropos.man index 1472f305d75b2..a97253db34d4b 100644 --- a/gnu/usr.bin/man/apropos/apropos.man +++ b/gnu/usr.bin/man/apropos/apropos.man @@ -34,7 +34,7 @@ standard output. displays only complete word matches. .Pp .Ar keyword -really is a regular expression, please read +really is an extended regular expression, please read .Xr grep 1 manual page for more information about its format. .Sh DIAGNOSTICS diff --git a/gnu/usr.bin/man/apropos/apropos.sh b/gnu/usr.bin/man/apropos/apropos.sh index f6be26b894ba9..043c3d0b063ae 100644 --- a/gnu/usr.bin/man/apropos/apropos.sh +++ b/gnu/usr.bin/man/apropos/apropos.sh @@ -84,7 +84,7 @@ esac for manpage do - if grep -hi $grepopt -- "$manpage" $mandir; then : + if grep -Ehi $grepopt -- "$manpage" $mandir; then : else echo "$manpage: nothing appropriate" fi |
