summaryrefslogtreecommitdiffstats
path: root/bin/ls/ls.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ls/ls.c')
-rw-r--r--bin/ls/ls.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/ls/ls.c b/bin/ls/ls.c
index f500426..1338841 100644
--- a/bin/ls/ls.c
+++ b/bin/ls/ls.c
@@ -166,7 +166,7 @@ main(argc, argv)
f_listdot = 1;
fts_options = FTS_PHYSICAL;
- while ((ch = getopt(argc, argv, "1ABCFGHLPRTWZabcdfghiklnoqrstu")) != -1) {
+ while ((ch = getopt(argc, argv, "1ABCFGHLPRTWZabcdfghiklnoqrstuw")) != -1) {
switch (ch) {
/*
* The -1, -C and -l options all override each other so shell
@@ -275,6 +275,11 @@ main(argc, argv)
f_octal = 0;
f_octal_escape = 1;
break;
+ case 'w':
+ f_nonprint = 0;
+ f_octal = 0;
+ f_octal_escape = 0;
+ break;
case 'Z':
f_lomac = 1;
break;
OpenPOWER on IntegriCloud