aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-10-27 12:37:22 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-10-27 12:37:22 +0000
commitde5f645dff4848e30a2bf564713088c2425ce9e2 (patch)
tree3ee4d6837321fbb39f8bcc4aac5de8ca2527d1de
parent59f502b36ff59e81cf3468c4484dd7c317dd5591 (diff)
downloadbusybox-w32-de5f645dff4848e30a2bf564713088c2425ce9e2.tar.gz
busybox-w32-de5f645dff4848e30a2bf564713088c2425ce9e2.tar.bz2
busybox-w32-de5f645dff4848e30a2bf564713088c2425ce9e2.zip
ls: trim help text
-rw-r--r--include/usage.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/include/usage.h b/include/usage.h
index dbef9f6f5..97f4f27be 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -2252,21 +2252,21 @@
2252#define ls_full_usage "\n\n" \ 2252#define ls_full_usage "\n\n" \
2253 "List directory contents\n" \ 2253 "List directory contents\n" \
2254 "\nOptions:" \ 2254 "\nOptions:" \
2255 "\n -1 List files in a single column" \ 2255 "\n -1 List in a single column" \
2256 "\n -A Do not list implied . and .." \ 2256 "\n -A Don't list . and .." \
2257 "\n -a Do not hide entries starting with ." \ 2257 "\n -a Don't hide entries starting with ." \
2258 "\n -C List entries by columns" \ 2258 "\n -C List by columns" \
2259 USE_FEATURE_LS_TIMESTAMPS( \ 2259 USE_FEATURE_LS_TIMESTAMPS( \
2260 "\n -c With -l: show ctime") \ 2260 "\n -c With -l: sort by ctime") \
2261 USE_FEATURE_LS_COLOR( \ 2261 USE_FEATURE_LS_COLOR( \
2262 "\n --color[={always,never,auto}] Control coloring") \ 2262 "\n --color[={always,never,auto}] Control coloring") \
2263 "\n -d List directory entries instead of contents" \ 2263 "\n -d List directory entries instead of contents" \
2264 USE_FEATURE_LS_TIMESTAMPS( \ 2264 USE_FEATURE_LS_TIMESTAMPS( \
2265 "\n -e List both full date and full time") \ 2265 "\n -e List full date and time") \
2266 USE_FEATURE_LS_FILETYPES( \ 2266 USE_FEATURE_LS_FILETYPES( \
2267 "\n -F Append indicator (one of */=@|) to entries") \ 2267 "\n -F Append indicator (one of */=@|) to entries") \
2268 "\n -i List the i-node for each file" \ 2268 "\n -i List inode numbers" \
2269 "\n -l Use a long listing format" \ 2269 "\n -l Long listing format" \
2270 "\n -n List numeric UIDs and GIDs instead of names" \ 2270 "\n -n List numeric UIDs and GIDs instead of names" \
2271 USE_FEATURE_LS_FILETYPES( \ 2271 USE_FEATURE_LS_FILETYPES( \
2272 "\n -p Append indicator (one of /=@|) to entries") \ 2272 "\n -p Append indicator (one of /=@|) to entries") \
@@ -2275,31 +2275,31 @@
2275 USE_FEATURE_LS_RECURSIVE( \ 2275 USE_FEATURE_LS_RECURSIVE( \
2276 "\n -R List subdirectories recursively") \ 2276 "\n -R List subdirectories recursively") \
2277 USE_FEATURE_LS_SORTFILES( \ 2277 USE_FEATURE_LS_SORTFILES( \
2278 "\n -r Sort the listing in reverse order") \ 2278 "\n -r Sort in reverse order") \
2279 USE_FEATURE_LS_SORTFILES( \ 2279 USE_FEATURE_LS_SORTFILES( \
2280 "\n -S Sort the listing by file size") \ 2280 "\n -S Sort by file size") \
2281 "\n -s List the size of each file, in blocks" \ 2281 "\n -s List the size of each file, in blocks" \
2282 USE_FEATURE_AUTOWIDTH( \ 2282 USE_FEATURE_AUTOWIDTH( \
2283 "\n -T NUM Assume Tabstop every NUM columns") \ 2283 "\n -T NUM Assume tabstop every NUM columns") \
2284 USE_FEATURE_LS_TIMESTAMPS( \ 2284 USE_FEATURE_LS_TIMESTAMPS( \
2285 "\n -t With -l: show modification time") \ 2285 "\n -t With -l: sort by modification time") \
2286 USE_FEATURE_LS_TIMESTAMPS( \ 2286 USE_FEATURE_LS_TIMESTAMPS( \
2287 "\n -u With -l: show access time") \ 2287 "\n -u With -l: sort by access time") \
2288 USE_FEATURE_LS_SORTFILES( \ 2288 USE_FEATURE_LS_SORTFILES( \
2289 "\n -v Sort the listing by version") \ 2289 "\n -v Sort by version") \
2290 USE_FEATURE_AUTOWIDTH( \ 2290 USE_FEATURE_AUTOWIDTH( \
2291 "\n -w NUM Assume the terminal is NUM columns wide") \ 2291 "\n -w NUM Assume the terminal is NUM columns wide") \
2292 "\n -x List entries by lines instead of by columns" \ 2292 "\n -x List by lines" \
2293 USE_FEATURE_LS_SORTFILES( \ 2293 USE_FEATURE_LS_SORTFILES( \
2294 "\n -X Sort the listing by extension") \ 2294 "\n -X Sort by extension") \
2295 USE_FEATURE_HUMAN_READABLE( \ 2295 USE_FEATURE_HUMAN_READABLE( \
2296 "\n -h Print sizes in human readable format (e.g., 1K 243M 2G)") \ 2296 "\n -h List sizes in human readable format (1K 243M 2G)") \
2297 USE_SELINUX( \ 2297 USE_SELINUX( \
2298 "\n -k Print security context") \ 2298 "\n -k List security context") \
2299 USE_SELINUX( \ 2299 USE_SELINUX( \
2300 "\n -K Print security context in long format") \ 2300 "\n -K List security context in long format") \
2301 USE_SELINUX( \ 2301 USE_SELINUX( \
2302 "\n -Z Print security context and permission") \ 2302 "\n -Z List security context and permission") \
2303 2303
2304#define lsattr_trivial_usage \ 2304#define lsattr_trivial_usage \
2305 "[-Radlv] [files...]" 2305 "[-Radlv] [files...]"
@@ -2309,7 +2309,7 @@
2309 "\n -R Recursively list subdirectories" \ 2309 "\n -R Recursively list subdirectories" \
2310 "\n -a Do not hide entries starting with ." \ 2310 "\n -a Do not hide entries starting with ." \
2311 "\n -d List directory entries instead of contents" \ 2311 "\n -d List directory entries instead of contents" \
2312 "\n -l Print long flag names" \ 2312 "\n -l List long flag names" \
2313 "\n -v List the file's version/generation number" \ 2313 "\n -v List the file's version/generation number" \
2314 2314
2315#define lsmod_trivial_usage \ 2315#define lsmod_trivial_usage \