diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-15 21:17:21 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-15 21:17:21 +0000 |
commit | d786cc59662c52c268c1f074546e0705facf3475 (patch) | |
tree | fcd583d634e852e0c1316bf8d41185c9e206804d | |
parent | be9924394547da16396952dfd8bbfa7da96e644d (diff) | |
download | busybox-w32-d786cc59662c52c268c1f074546e0705facf3475.tar.gz busybox-w32-d786cc59662c52c268c1f074546e0705facf3475.tar.bz2 busybox-w32-d786cc59662c52c268c1f074546e0705facf3475.zip |
fdisk: fix minor issues with help text
-rw-r--r-- | include/usage.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/include/usage.h b/include/usage.h index 13d79b639..0c02d2501 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -940,48 +940,48 @@ | |||
940 | "[PATH...] [EXPRESSION]" | 940 | "[PATH...] [EXPRESSION]" |
941 | #define find_full_usage \ | 941 | #define find_full_usage \ |
942 | "Search for files in a directory hierarchy. The default PATH is\n" \ | 942 | "Search for files in a directory hierarchy. The default PATH is\n" \ |
943 | "the current directory; default EXPRESSION is '-print'\n" \ | 943 | "the current directory, default EXPRESSION is '-print'\n" \ |
944 | "\nEXPRESSION may consist of:\n" \ | 944 | "\nEXPRESSION may consist of:" \ |
945 | " -follow Dereference symlinks\n" \ | 945 | "\n -follow Dereference symlinks" \ |
946 | " -name PATTERN File name (leading directories removed) matches PATTERN\n" \ | 946 | "\n -name PATTERN File name (leading directories removed) matches PATTERN" \ |
947 | " -print Print (default and assumed)" \ | 947 | "\n -print Print (default and assumed)" \ |
948 | USE_FEATURE_FIND_PRINT0( \ | 948 | USE_FEATURE_FIND_PRINT0( \ |
949 | "\n -print0 Delimit output with null characters rather than" \ | 949 | "\n -print0 Delimit output with null characters rather than" \ |
950 | "\n newlines" \ | 950 | "\n newlines" \ |
951 | ) USE_FEATURE_FIND_TYPE( \ | 951 | ) USE_FEATURE_FIND_TYPE( \ |
952 | "\n -type X Filetype matches X (where X is one of: f,d,l,b,c,...)" \ | 952 | "\n -type X Filetype matches X (where X is one of: f,d,l,b,c,...)" \ |
953 | ) USE_FEATURE_FIND_PERM( \ | 953 | ) USE_FEATURE_FIND_PERM( \ |
954 | "\n -perm PERMS Permissions match any of (+NNN); all of (-NNN);" \ | 954 | "\n -perm PERMS Permissions match any of (+NNN), all of (-NNN)," \ |
955 | "\n or exactly (NNN)" \ | 955 | "\n or exactly (NNN)" \ |
956 | ) USE_FEATURE_FIND_MTIME( \ | 956 | ) USE_FEATURE_FIND_MTIME( \ |
957 | "\n -mtime DAYS Modified time is greater than (+N); less than (-N);" \ | 957 | "\n -mtime DAYS Modified time is greater than (+N), less than (-N)," \ |
958 | "\n Or exactly (N) days" \ | 958 | "\n or exactly (N) days" \ |
959 | ) USE_FEATURE_FIND_MMIN( \ | 959 | ) USE_FEATURE_FIND_MMIN( \ |
960 | "\n -mmin MINS Modified time is greater than (+N); less than (-N);" \ | 960 | "\n -mmin MINS Modified time is greater than (+N), less than (-N)," \ |
961 | "\n or exactly (N) minutes" \ | 961 | "\n or exactly (N) minutes" \ |
962 | ) USE_FEATURE_FIND_NEWER( \ | 962 | ) USE_FEATURE_FIND_NEWER( \ |
963 | "\n -newer FILE Modified time is more recent than FILE's" \ | 963 | "\n -newer FILE Modified time is more recent than FILE's" \ |
964 | ) USE_FEATURE_FIND_INUM( \ | 964 | ) USE_FEATURE_FIND_INUM( \ |
965 | "\n -inum N File has inode number N" \ | 965 | "\n -inum N File has inode number N" \ |
966 | ) USE_FEATURE_FIND_EXEC( \ | 966 | ) USE_FEATURE_FIND_EXEC( \ |
967 | "\n -exec CMD Execute CMD with all instances of {} replaced by the" \ | 967 | "\n -exec CMD Execute CMD with all instances of {} replaced by the" \ |
968 | "\n files matching EXPRESSION" \ | 968 | "\n files matching EXPRESSION" \ |
969 | ) USE_FEATURE_FIND_USER( \ | 969 | ) USE_FEATURE_FIND_USER( \ |
970 | "\n -user NAME File is owned by user NAME (numeric user ID allowed)" \ | 970 | "\n -user NAME File is owned by user NAME (numeric user ID allowed)" \ |
971 | ) USE_FEATURE_FIND_GROUP( \ | 971 | ) USE_FEATURE_FIND_GROUP( \ |
972 | "\n -group NAME File belongs to group NAME (numeric group ID allowed)" \ | 972 | "\n -group NAME File belongs to group NAME (numeric group ID allowed)" \ |
973 | ) USE_FEATURE_FIND_DEPTH( \ | 973 | ) USE_FEATURE_FIND_DEPTH( \ |
974 | "\n -depth Process directory after traversing it" \ | 974 | "\n -depth Process directory after traversing it" \ |
975 | ) USE_FEATURE_FIND_SIZE( \ | 975 | ) USE_FEATURE_FIND_SIZE( \ |
976 | "\n -size N File size is N" \ | 976 | "\n -size N File size is N" \ |
977 | ) USE_FEATURE_FIND_PRUNE( \ | 977 | ) USE_FEATURE_FIND_PRUNE( \ |
978 | "\n -prune Stop traversing current subtree" \ | 978 | "\n -prune Stop traversing current subtree" \ |
979 | ) USE_FEATURE_FIND_DELETE( \ | 979 | ) USE_FEATURE_FIND_DELETE( \ |
980 | "\n -delete Delete files; Turns on -depth option" \ | 980 | "\n -delete Delete files, turns on -depth option" \ |
981 | ) USE_FEATURE_FIND_PATH( \ | 981 | ) USE_FEATURE_FIND_PATH( \ |
982 | "\n -path Path matches PATTERN" \ | 982 | "\n -path Path matches PATTERN" \ |
983 | ) USE_FEATURE_FIND_PAREN( \ | 983 | ) USE_FEATURE_FIND_PAREN( \ |
984 | "\n (EXPR) Group an expression" \ | 984 | "\n (EXPR) Group an expression" \ |
985 | ) | 985 | ) |
986 | 986 | ||
987 | #define find_example_usage \ | 987 | #define find_example_usage \ |