diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-25 02:38:54 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-25 02:38:54 +0000 |
commit | f8ea0f3a66559a00c41fd7877bdc241973a60f8c (patch) | |
tree | 41778c9565c90e04f8d8a8c67caf8ae7b7eaf0d0 /findutils | |
parent | 385304d449c25948315eb8872879d49bb2c65586 (diff) |
grep: "implement" -a and -I by ignoring them
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/grep.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index 702a8a531..f6ea54ed2 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -28,6 +28,9 @@ USE_FEATURE_GREP_CONTEXT("A:B:C:") \ USE_FEATURE_GREP_EGREP_ALIAS("E") \ USE_DESKTOP("w") \ + "aI" +/* ignored: -a "assume all files to be text" */ +/* ignored: -I "assume binary files have no matches" */ enum { OPTBIT_l, |