diff options
Diffstat (limited to 'src/execline/background.c')
-rw-r--r-- | src/execline/background.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/execline/background.c b/src/execline/background.c index e8def5b..06fadd5 100644 --- a/src/execline/background.c +++ b/src/execline/background.c @@ -10,14 +10,14 @@ #include <skalibs/types.h> #include <execline/execline.h> -#define USAGE "background [ -d ] { command... }" +#define USAGE "& [ -d ] { command... }" int main (int argc, char const **argv, char const *const *envp) { pid_t pid ; int argc1 ; int df = 0 ; - PROG = "background" ; + PROG = "&" ; { subgetopt_t l = SUBGETOPT_ZERO ; for (;;) @@ -45,7 +45,7 @@ int main (int argc, char const **argv, char const *const *envp) { case -1: strerr_diefu1sys(111, "doublefork") ; case 0: - PROG = "background (grandchild)" ; + PROG = "& (grandchild)" ; pathexec0_run(argv, envp) ; strerr_dieexec(errno == ENOENT ? 127 : 126, argv[0]) ; } |