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) | |
download | busybox-w32-f8ea0f3a66559a00c41fd7877bdc241973a60f8c.tar.gz busybox-w32-f8ea0f3a66559a00c41fd7877bdc241973a60f8c.tar.bz2 busybox-w32-f8ea0f3a66559a00c41fd7877bdc241973a60f8c.zip |
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 @@ | |||
28 | USE_FEATURE_GREP_CONTEXT("A:B:C:") \ | 28 | USE_FEATURE_GREP_CONTEXT("A:B:C:") \ |
29 | USE_FEATURE_GREP_EGREP_ALIAS("E") \ | 29 | USE_FEATURE_GREP_EGREP_ALIAS("E") \ |
30 | USE_DESKTOP("w") \ | 30 | USE_DESKTOP("w") \ |
31 | "aI" | ||
32 | /* ignored: -a "assume all files to be text" */ | ||
33 | /* ignored: -I "assume binary files have no matches" */ | ||
31 | 34 | ||
32 | enum { | 35 | enum { |
33 | OPTBIT_l, | 36 | OPTBIT_l, |