aboutsummaryrefslogtreecommitdiff
path: root/findutils/find.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-02-12 20:37:41 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-02-12 20:37:41 +0100
commite1a4209a5e9a8efe85bed47b576bdcba17056d2d (patch)
treeead0f67cf97329f7995bfcb1e5fb20f8d1a4509a /findutils/find.c
parent053c12e0de30afbc19019ffa9b0cb01edc44539f (diff)
downloadbusybox-e1a4209a5e9a8efe85bed47b576bdcba17056d2d.tar.gz
find: trim help text a bit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils/find.c')
-rw-r--r--findutils/find.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/findutils/find.c b/findutils/find.c
index 52ac7b0b3..9ae84fa0d 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -273,27 +273,27 @@
//usage: )
//usage: IF_FEATURE_FIND_PERM(
//usage: "\n -perm MASK At least one mask bit (+MASK), all bits (-MASK),"
-//usage: "\n or exactly MASK bits are set in mode bits"
+//usage: "\n or exactly MASK bits are set in file's mode"
//usage: )
//usage: IF_FEATURE_FIND_MTIME(
-//usage: "\n -mtime DAYS Modified time is greater than (+N), less than (-N),"
-//usage: "\n or exactly N days"
+//usage: "\n -mtime DAYS mtime is greater than (+N), less than (-N),"
+//usage: "\n or exactly N days in the past"
//usage: )
//usage: IF_FEATURE_FIND_MMIN(
-//usage: "\n -mmin MINS Modified time is greater than (+N), less than (-N),"
-//usage: "\n or exactly N minutes"
+//usage: "\n -mmin MINS mtime is greater than (+N), less than (-N),"
+//usage: "\n or exactly N minutes in the past"
//usage: )
//usage: IF_FEATURE_FIND_NEWER(
-//usage: "\n -newer FILE Modified time is more recent than FILE's"
+//usage: "\n -newer FILE mtime is more recent than FILE's"
//usage: )
//usage: IF_FEATURE_FIND_INUM(
//usage: "\n -inum N File has inode number N"
//usage: )
//usage: IF_FEATURE_FIND_USER(
-//usage: "\n -user NAME File is owned by user NAME (numeric user ID allowed)"
+//usage: "\n -user NAME/ID File is owned by given user"
//usage: )
//usage: IF_FEATURE_FIND_GROUP(
-//usage: "\n -group NAME File belongs to group NAME (numeric group ID allowed)"
+//usage: "\n -group NAME/ID File is owned by given group"
//usage: )
//usage: IF_FEATURE_FIND_SIZE(
//usage: "\n -size N[bck] File size is N (c:bytes,k:kbytes,b:512 bytes(def.))"