diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2003-09-09 12:02:52 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2003-09-09 12:02:52 +0000 |
commit | bc458f6637b4151660506c3264b2cb5e8ad6248d (patch) | |
tree | eacd321e920b089c81741635f74704dbc83a52ea /bin/ls/util.c | |
parent | a74172ab68837604fae52e17aeeff6316783d6bd (diff) | |
download | src-bc458f6637b4151660506c3264b2cb5e8ad6248d.tar.gz src-bc458f6637b4151660506c3264b2cb5e8ad6248d.zip |
Add the -m, -w and -x options to ls's usage message.
PR: 51493
Submitted by: Walter Belgers
MFC after: 1 month
Notes
Notes:
svn path=/head/; revision=119914
Diffstat (limited to 'bin/ls/util.c')
-rw-r--r-- | bin/ls/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ls/util.c b/bin/ls/util.c index c8ea98bd8add..0711b0b5961f 100644 --- a/bin/ls/util.c +++ b/bin/ls/util.c @@ -156,9 +156,9 @@ usage(void) { (void)fprintf(stderr, #ifdef COLORLS - "usage: ls [-ABCFGHLPRTWZabcdfghiklnoqrstu1]" + "usage: ls [-ABCFGHLPRTWZabcdfghiklmnoqrstuwx1]" #else - "usage: ls [-ABCFHLPRTWZabcdfghiklnoqrstu1]" + "usage: ls [-ABCFHLPRTWZabcdfghiklmnoqrstuwx1]" #endif " [file ...]\n"); exit(1); |