aboutsummaryrefslogtreecommitdiff
path: root/usage.c
diff options
context:
space:
mode:
Diffstat (limited to 'usage.c')
-rw-r--r--usage.c23
1 files changed, 15 insertions, 8 deletions
diff --git a/usage.c b/usage.c
index 8e0247941..236bc9460 100644
--- a/usage.c
+++ b/usage.c
@@ -592,6 +592,9 @@ const char ls_usage[] =
592#ifdef BB_FEATURE_LS_FILETYPES 592#ifdef BB_FEATURE_LS_FILETYPES
593 "p" 593 "p"
594#endif 594#endif
595#ifdef BB_FEATURE_LS_FOLLOWLINKS
596 "L"
597#endif
595#ifdef BB_FEATURE_LS_RECURSIVE 598#ifdef BB_FEATURE_LS_RECURSIVE
596 "R" 599 "R"
597#endif 600#endif
@@ -640,6 +643,9 @@ const char ls_usage[] =
640#ifdef BB_FEATURE_LS_FILETYPES 643#ifdef BB_FEATURE_LS_FILETYPES
641 "\t-p\tappend indicator (one of /=@|) to entries\n" 644 "\t-p\tappend indicator (one of /=@|) to entries\n"
642#endif 645#endif
646#ifdef BB_FEATURE_LS_FOLLOWLINKS
647 "\t-L\tlist entries pointed to by symbolic links\n"
648#endif
643#ifdef BB_FEATURE_LS_RECURSIVE 649#ifdef BB_FEATURE_LS_RECURSIVE
644 "\t-R\tlist subdirectories recursively\n" 650 "\t-R\tlist subdirectories recursively\n"
645#endif 651#endif
@@ -1433,14 +1439,15 @@ const char whoami_usage[] =
1433#endif 1439#endif
1434 1440
1435#if defined BB_XARGS 1441#if defined BB_XARGS
1436const char xargs_usage[] = 1442const char xargs_usage[] = "xargs [OPTIONS] [COMMAND] [ARGS...]\n"
1437 "xargs [-0prtx] [-e[eof-str]] [-i[replace-str]] [-l[max-lines]]\n" 1443#ifndef BB_FEATURE_TRIVIAL_HELP
1438 "[-n max-args] [-s max-chars] [-P max-procs] [--null] [--eof[=eof-str]]\n" 1444 "\nExecutes COMMAND on every item given by standard input.\n\n"
1439 "[--replace[=replace-str]] [--max-lines[=max-lines]] [--interactive]\n" 1445 "Options:\n"
1440 "[--max-chars=max-chars] [--verbose] [--exit] [--max-procs=max-procs]\n" 1446 "\t-t\tPrint the command just before it is run\n"
1441 "[--max-args=max-args] [--no-run-if-empty] [--help]\n" 1447 "\t-l LEN\tUse LEN as maximum line length (default 490, max 1023)\n"
1442 "[command [initial-arguments]]\n" 1448 "\t-e ENDING\tAppend ENDING to the command before executing it.\n"
1443 "\nBuild and execute command on lines from standard input.\n"; 1449#endif
1450 ;
1444#endif 1451#endif
1445 1452
1446#if defined BB_YES 1453#if defined BB_YES