]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
textual: there may be no space between option and optional =arg
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 22 Sep 2014 20:15:40 +0000 (22:15 +0200)
committerKarel Zak <kzak@redhat.com>
Wed, 1 Oct 2014 07:37:11 +0000 (09:37 +0200)
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
sys-utils/nsenter.c

index 7da44e707c266e190af96276f8464d53fda69c5b..c54d63f9d5e64f6dd821d183ade6dd30366d33d0 100644 (file)
@@ -67,16 +67,16 @@ static void usage(int status)
 
        fputs(USAGE_OPTIONS, out);
        fputs(_(" -t, --target <pid>     target process to get namespaces from\n"), out);
-       fputs(_(" -m, --mount [=<file>]  enter mount namespace\n"), out);
-       fputs(_(" -u, --uts   [=<file>]  enter UTS namespace (hostname etc)\n"), out);
-       fputs(_(" -i, --ipc   [=<file>]  enter System V IPC namespace\n"), out);
-       fputs(_(" -n, --net   [=<file>]  enter network namespace\n"), out);
-       fputs(_(" -p, --pid   [=<file>]  enter pid namespace\n"), out);
-       fputs(_(" -U, --user  [=<file>]  enter user namespace\n"), out);
+       fputs(_(" -m, --mount[=<file>]   enter mount namespace\n"), out);
+       fputs(_(" -u, --uts[=<file>]     enter UTS namespace (hostname etc)\n"), out);
+       fputs(_(" -i, --ipc[=<file>]     enter System V IPC namespace\n"), out);
+       fputs(_(" -n, --net[=<file>]     enter network namespace\n"), out);
+       fputs(_(" -p, --pid[=<file>]     enter pid namespace\n"), out);
+       fputs(_(" -U, --user[=<file>]    enter user namespace\n"), out);
        fputs(_(" -S, --setuid <uid>     set uid in entered namespace\n"), out);
        fputs(_(" -G, --setgid <gid>     set gid in entered namespace\n"), out);
-       fputs(_(" -r, --root  [=<dir>]   set the root directory\n"), out);
-       fputs(_(" -w, --wd    [=<dir>]   set the working directory\n"), out);
+       fputs(_(" -r, --root[=<dir>]     set the root directory\n"), out);
+       fputs(_(" -w, --wd[=<dir>]       set the working directory\n"), out);
        fputs(_(" -F, --no-fork          do not fork before exec'ing <program>\n"), out);
 
        fputs(USAGE_SEPARATOR, out);