diff options
author | Matheus Izvekov <mizvekov@gmail.com> | 2010-01-06 09:19:04 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-06 09:19:04 +0100 |
commit | d0f601f066d290d4a2dfb08ab724c6c7f4353649 (patch) | |
tree | 24659bc853cd541a5dff29e6754d1568a3d354c2 /include | |
parent | 839fd71077d457c9e86afc56ba5cc54a0e1fcfb8 (diff) |
find: add optional support for -links. +100 bytes
Signed-off-by: Matheus Izvekov <mizvekov@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 9 |
1 files changed, 6 insertions, 3 deletions
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" \ |