diff options
author | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-13 21:05:41 +0000 |
---|---|---|
committer | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-13 21:05:41 +0000 |
commit | 1bf8c43e4e6dbd3d156be8b01e01bc02d68e1960 (patch) | |
tree | f3152b7eb88a52763740683d918e61aacbb9ade9 /include | |
parent | 67224c53098c621bab9c99c2ed6a0adf2a11977c (diff) | |
download | busybox-w32-1bf8c43e4e6dbd3d156be8b01e01bc02d68e1960.tar.gz busybox-w32-1bf8c43e4e6dbd3d156be8b01e01bc02d68e1960.tar.bz2 busybox-w32-1bf8c43e4e6dbd3d156be8b01e01bc02d68e1960.zip |
add find's "-mmin" option. configurable.
git-svn-id: svn://busybox.net/trunk/busybox@13271 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index 9387238ab..81f0e1d6d 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -722,6 +722,11 @@ | |||
722 | #else | 722 | #else |
723 | # define USAGE_FIND_MTIME(a) | 723 | # define USAGE_FIND_MTIME(a) |
724 | #endif | 724 | #endif |
725 | #ifdef CONFIG_FEATURE_FIND_MMIN | ||
726 | #define USAGE_FIND_MMIN(a) a | ||
727 | #else | ||
728 | #define USAGE_FIND_MMIN(a) | ||
729 | #endif | ||
725 | #ifdef CONFIG_FEATURE_FIND_NEWER | 730 | #ifdef CONFIG_FEATURE_FIND_NEWER |
726 | # define USAGE_FIND_NEWER(a) a | 731 | # define USAGE_FIND_NEWER(a) a |
727 | #else | 732 | #else |
@@ -752,7 +757,9 @@ | |||
752 | ) USAGE_FIND_PERM( \ | 757 | ) USAGE_FIND_PERM( \ |
753 | "\n\t-perm PERMS\tPermissions match any of (+NNN); all of (-NNN);\n\t\t\tor exactly (NNN)" \ | 758 | "\n\t-perm PERMS\tPermissions match any of (+NNN); all of (-NNN);\n\t\t\tor exactly (NNN)" \ |
754 | ) USAGE_FIND_MTIME( \ | 759 | ) USAGE_FIND_MTIME( \ |
755 | "\n\t-mtime TIME\tModified time is greater than (+N); less than (-N);\n\t\t\tor exactly (N) days" \ | 760 | "\n\t-mtime DAYS\tModified time is greater than (+N); less than (-N);\n\t\t\tor exactly (N) days" \ |
761 | ) USAGE_FIND_MMIN( \ | ||
762 | "\n\t-mmin MINS\tModified time is greater than (+N); less than (-N);\n\t\t\tor exactly (N) minutes" \ | ||
756 | ) USAGE_FIND_NEWER( \ | 763 | ) USAGE_FIND_NEWER( \ |
757 | "\n\t-newer FILE\tModified time is more recent than FILE's" \ | 764 | "\n\t-newer FILE\tModified time is more recent than FILE's" \ |
758 | ) USAGE_FIND_INUM( \ | 765 | ) USAGE_FIND_INUM( \ |