aboutsummaryrefslogtreecommitdiff
path: root/util-linux/unshare.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-01-21 02:49:58 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2017-01-21 02:49:58 +0100
commitbbc7bee9664b582c8237c4b879bba1bdee4d62a6 (patch)
tree150b33e048693b206af92b258a76d859bcf2a1d8 /util-linux/unshare.c
parentf6e20724d4aac3655e921ff6072e60bbe182b273 (diff)
downloadbusybox-w32-bbc7bee9664b582c8237c4b879bba1bdee4d62a6.tar.gz
busybox-w32-bbc7bee9664b582c8237c4b879bba1bdee4d62a6.tar.bz2
busybox-w32-bbc7bee9664b582c8237c4b879bba1bdee4d62a6.zip
make --help texts more uniform
function old new delta packed_usage 31062 31035 -27 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to '')
-rw-r--r--util-linux/unshare.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/util-linux/unshare.c b/util-linux/unshare.c
index bbabeef55..52e8f1421 100644
--- a/util-linux/unshare.c
+++ b/util-linux/unshare.c
@@ -25,14 +25,14 @@
25//usage:#define unshare_trivial_usage 25//usage:#define unshare_trivial_usage
26//usage: "[OPTIONS] [PROG [ARGS]]" 26//usage: "[OPTIONS] [PROG [ARGS]]"
27//usage:#define unshare_full_usage "\n" 27//usage:#define unshare_full_usage "\n"
28//usage: "\n -m, --mount[=FILE] Unshare mount namespace" 28//usage: "\n -m,--mount[=FILE] Unshare mount namespace"
29//usage: "\n -u, --uts[=FILE] Unshare UTS namespace (hostname etc.)" 29//usage: "\n -u,--uts[=FILE] Unshare UTS namespace (hostname etc.)"
30//usage: "\n -i, --ipc[=FILE] Unshare System V IPC namespace" 30//usage: "\n -i,--ipc[=FILE] Unshare System V IPC namespace"
31//usage: "\n -n, --net[=FILE] Unshare network namespace" 31//usage: "\n -n,--net[=FILE] Unshare network namespace"
32//usage: "\n -p, --pid[=FILE] Unshare PID namespace" 32//usage: "\n -p,--pid[=FILE] Unshare PID namespace"
33//usage: "\n -U, --user[=FILE} Unshare user namespace" 33//usage: "\n -U,--user[=FILE] Unshare user namespace"
34//usage: "\n -f, --fork Fork before execing PROG" 34//usage: "\n -f,--fork Fork before execing PROG"
35//usage: "\n -r, --map-root-user Map current user to root (implies -u)" 35//usage: "\n -r,--map-root-user Map current user to root (implies -u)"
36//usage: "\n --mount-proc[=DIR] Mount /proc filesystem first (implies -m)" 36//usage: "\n --mount-proc[=DIR] Mount /proc filesystem first (implies -m)"
37//usage: "\n --propagation slave|shared|private|unchanged" 37//usage: "\n --propagation slave|shared|private|unchanged"
38//usage: "\n Modify mount propagation in mount namespace" 38//usage: "\n Modify mount propagation in mount namespace"