zgrep(1): Note that -r/-R are not currently supported.

This is better behavior than just silently doing the wrong thing. We do not
currently have plans to support -r/-R with the compression-enabled greps.

Reported by:	jilles
This commit is contained in:
Kyle Evans 2018-05-03 02:56:13 +00:00
parent 1921252001
commit 42fd147f79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=333193

View File

@ -106,6 +106,10 @@ do
silent=1
shift
;;
-r|-R)
echo "${prg}: the ${1} flag is not currently supported" >&2
exit 1
;;
-V|--version)
exec ${grep} -V
;;