From d0f601f066d290d4a2dfb08ab724c6c7f4353649 Mon Sep 17 00:00:00 2001 From: Matheus Izvekov Date: Wed, 6 Jan 2010 09:19:04 +0100 Subject: find: add optional support for -links. +100 bytes Signed-off-by: Matheus Izvekov Signed-off-by: Denys Vlasenko --- include/usage.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'include/usage.h') diff --git a/include/usage.h b/include/usage.h index eab57d8ae..4254e153c 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1232,13 +1232,13 @@ "\n -type X File type is X (X is one of: f,d,l,b,c,...)") \ IF_FEATURE_FIND_PERM( \ "\n -perm NNN Permissions match any of (+NNN), all of (-NNN)," \ - "\n or exactly (NNN)") \ + "\n or exactly NNN") \ IF_FEATURE_FIND_MTIME( \ "\n -mtime DAYS Modified time is greater than (+N), less than (-N)," \ - "\n or exactly (N) days") \ + "\n or exactly N days") \ IF_FEATURE_FIND_MMIN( \ "\n -mmin MINS Modified time is greater than (+N), less than (-N)," \ - "\n or exactly (N) minutes") \ + "\n or exactly N minutes") \ IF_FEATURE_FIND_NEWER( \ "\n -newer FILE Modified time is more recent than FILE's") \ IF_FEATURE_FIND_INUM( \ @@ -1252,6 +1252,9 @@ IF_FEATURE_FIND_SIZE( \ "\n -size N[bck] File size is N (c:bytes,k:kbytes,b:512 bytes(def.))." \ "\n +/-N: file size is bigger/smaller than N") \ + IF_FEATURE_FIND_LINKS( \ + "\n -links N Number of links is greater than (+N), less than (-N)," \ + "\n or exactly N") \ "\n -print Print (default and assumed)" \ IF_FEATURE_FIND_PRINT0( \ "\n -print0 Delimit output with null characters rather than" \ -- cgit v1.2.3