diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-12 20:37:41 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-12 20:37:41 +0100 |
commit | e1a4209a5e9a8efe85bed47b576bdcba17056d2d (patch) | |
tree | ead0f67cf97329f7995bfcb1e5fb20f8d1a4509a | |
parent | 053c12e0de30afbc19019ffa9b0cb01edc44539f (diff) | |
download | busybox-w32-e1a4209a5e9a8efe85bed47b576bdcba17056d2d.tar.gz busybox-w32-e1a4209a5e9a8efe85bed47b576bdcba17056d2d.tar.bz2 busybox-w32-e1a4209a5e9a8efe85bed47b576bdcba17056d2d.zip |
find: trim help text a bit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | findutils/find.c | 16 |
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 @@ | |||
273 | //usage: ) | 273 | //usage: ) |
274 | //usage: IF_FEATURE_FIND_PERM( | 274 | //usage: IF_FEATURE_FIND_PERM( |
275 | //usage: "\n -perm MASK At least one mask bit (+MASK), all bits (-MASK)," | 275 | //usage: "\n -perm MASK At least one mask bit (+MASK), all bits (-MASK)," |
276 | //usage: "\n or exactly MASK bits are set in mode bits" | 276 | //usage: "\n or exactly MASK bits are set in file's mode" |
277 | //usage: ) | 277 | //usage: ) |
278 | //usage: IF_FEATURE_FIND_MTIME( | 278 | //usage: IF_FEATURE_FIND_MTIME( |
279 | //usage: "\n -mtime DAYS Modified time is greater than (+N), less than (-N)," | 279 | //usage: "\n -mtime DAYS mtime is greater than (+N), less than (-N)," |
280 | //usage: "\n or exactly N days" | 280 | //usage: "\n or exactly N days in the past" |
281 | //usage: ) | 281 | //usage: ) |
282 | //usage: IF_FEATURE_FIND_MMIN( | 282 | //usage: IF_FEATURE_FIND_MMIN( |
283 | //usage: "\n -mmin MINS Modified time is greater than (+N), less than (-N)," | 283 | //usage: "\n -mmin MINS mtime is greater than (+N), less than (-N)," |
284 | //usage: "\n or exactly N minutes" | 284 | //usage: "\n or exactly N minutes in the past" |
285 | //usage: ) | 285 | //usage: ) |
286 | //usage: IF_FEATURE_FIND_NEWER( | 286 | //usage: IF_FEATURE_FIND_NEWER( |
287 | //usage: "\n -newer FILE Modified time is more recent than FILE's" | 287 | //usage: "\n -newer FILE mtime is more recent than FILE's" |
288 | //usage: ) | 288 | //usage: ) |
289 | //usage: IF_FEATURE_FIND_INUM( | 289 | //usage: IF_FEATURE_FIND_INUM( |
290 | //usage: "\n -inum N File has inode number N" | 290 | //usage: "\n -inum N File has inode number N" |
291 | //usage: ) | 291 | //usage: ) |
292 | //usage: IF_FEATURE_FIND_USER( | 292 | //usage: IF_FEATURE_FIND_USER( |
293 | //usage: "\n -user NAME File is owned by user NAME (numeric user ID allowed)" | 293 | //usage: "\n -user NAME/ID File is owned by given user" |
294 | //usage: ) | 294 | //usage: ) |
295 | //usage: IF_FEATURE_FIND_GROUP( | 295 | //usage: IF_FEATURE_FIND_GROUP( |
296 | //usage: "\n -group NAME File belongs to group NAME (numeric group ID allowed)" | 296 | //usage: "\n -group NAME/ID File is owned by given group" |
297 | //usage: ) | 297 | //usage: ) |
298 | //usage: IF_FEATURE_FIND_SIZE( | 298 | //usage: IF_FEATURE_FIND_SIZE( |
299 | //usage: "\n -size N[bck] File size is N (c:bytes,k:kbytes,b:512 bytes(def.))" | 299 | //usage: "\n -size N[bck] File size is N (c:bytes,k:kbytes,b:512 bytes(def.))" |