diff options
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 3c518ab..6ab11c4 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -449,7 +449,9 @@ static const char ls_usage[] = "ls [-1a" #ifdef BB_FEATURE_LS_FILETYPES "F" #endif - "] [filenames...]\n\n" + "] [filenames...]\n" +#ifndef BB_FEATURE_TRIVIAL_HELP + "\nList directory contents\n\n" "Options:\n" "\t-a\tdo not hide entries starting with .\n" #ifdef BB_FEATURE_LS_TIMESTAMPS @@ -475,6 +477,7 @@ static const char ls_usage[] = "ls [-1a" #ifdef BB_FEATURE_LS_FILETYPES "\t-F\tappend indicator (one of */=@|) to entries\n" #endif +#endif ; extern int ls_main(int argc, char **argv) |