From 820deb2bda129370479df1e563580578644b8e54 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 2 Dec 2022 02:13:19 -0600 Subject: [PATCH] ls -b and -N and -q aren't conflict errors, they just switch each other off. --- toys/posix/ls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/posix/ls.c b/toys/posix/ls.c index 89dfe67a..3d0e1d26 100644 --- a/toys/posix/ls.c +++ b/toys/posix/ls.c @@ -12,7 +12,7 @@ * Posix says the -l date format should vary based on how recent it is * and we do --time-style=long-iso instead -USE_LS(NEWTOY(ls, "(color):;(full-time)(show-control-chars)ZgoACFHLNRSabcdfhikl@mnpqrstuw#=80<0x1[-Cxm1][-Cxml][-Cxmo][-Cxmg][-cu][-ftS][-HL][!Nqb]", TOYFLAG_BIN|TOYFLAG_LOCALE)) +USE_LS(NEWTOY(ls, "(color):;(full-time)(show-control-chars)ZgoACFHLNRSabcdfhikl@mnpqrstuw#=80<0x1[-Cxm1][-Cxml][-Cxmo][-Cxmg][-cu][-ftS][-HL][-Nqb]", TOYFLAG_BIN|TOYFLAG_LOCALE)) config LS bool "ls" -- 2.39.2