aboutsummaryrefslogtreecommitdiff
path: root/usage.c
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-07 03:52:38 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-07 03:52:38 +0000
commite45acc35483ff7584e7072ed6fce2d1076c87777 (patch)
tree9a5c0ca1d70fdc842b949e3c59a2c59f5f889711 /usage.c
parent43ee50fbeaed8c5c07474c1665a47791b42663f4 (diff)
downloadbusybox-w32-e45acc35483ff7584e7072ed6fce2d1076c87777.tar.gz
busybox-w32-e45acc35483ff7584e7072ed6fce2d1076c87777.tar.bz2
busybox-w32-e45acc35483ff7584e7072ed6fce2d1076c87777.zip
Reworked find with David Douthitt to support -type, -perm, -mtime, and
other improvements. git-svn-id: svn://busybox.net/trunk/busybox@1756 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r--usage.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/usage.c b/usage.c
index a27ff92e2..215871b5a 100644
--- a/usage.c
+++ b/usage.c
@@ -377,7 +377,15 @@ const char find_usage[] =
377 "\nEXPRESSION may consist of:\n" 377 "\nEXPRESSION may consist of:\n"
378 "\t-follow\t\tDereference symbolic links.\n" 378 "\t-follow\t\tDereference symbolic links.\n"
379 "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n" 379 "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n"
380 "\t-print\t\tprint the full file name followed by a newline to stdout." 380#ifdef BB_FEATURE_FIND_TYPE
381 "\t-type X\t\tFiletype matches X (where X is one of: f,d,l,b,c,...)\n"
382#endif
383#ifdef BB_FEATURE_FIND_PERM
384 "\t-perm PERMS\tPermissions match any of (+NNN); all of (-NNN); or exactly (NNN)\n"
385#endif
386#ifdef BB_FEATURE_FIND_MTIME
387 "\t-mtime TIME\tModified time is greater than (+N); less than (-N); or exactly (N) days\n"
388#endif
381#endif 389#endif
382 ; 390 ;
383#endif 391#endif