diff options
Diffstat (limited to 'toys')
-rw-r--r-- | toys/echo.c | 2 | ||||
-rw-r--r-- | toys/oneit.c | 2 | ||||
-rw-r--r-- | toys/seq.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/toys/echo.c b/toys/echo.c index fda008af..5feb9899 100644 --- a/toys/echo.c +++ b/toys/echo.c @@ -6,7 +6,7 @@ * * See http://www.opengroup.org/onlinepubs/009695399/utilities/echo.html -USE_ECHO(NEWTOY(echo, "+?en", TOYFLAG_BIN)) +USE_ECHO(NEWTOY(echo, "^?en", TOYFLAG_BIN)) config ECHO bool "echo" diff --git a/toys/oneit.c b/toys/oneit.c index 4c36491f..341bb080 100644 --- a/toys/oneit.c +++ b/toys/oneit.c @@ -6,7 +6,7 @@ * * Not in SUSv3. -USE_ONEIT(NEWTOY(oneit, "+<1c:p", TOYFLAG_SBIN)) +USE_ONEIT(NEWTOY(oneit, "^<1c:p", TOYFLAG_SBIN)) config ONEIT bool "oneit" @@ -6,7 +6,7 @@ * * Not in SUSv3. (Don't ask me why not.) -USE_SEQ(NEWTOY(seq, "<1>3?+", TOYFLAG_USR|TOYFLAG_BIN)) +USE_SEQ(NEWTOY(seq, "<1>3?", TOYFLAG_USR|TOYFLAG_BIN)) config SEQ bool "seq" |