mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 19:47:45 +00:00
mkfifo: make rustfmt work
This commit is contained in:
parent
a8d62b9b23
commit
0fec449de3
1 changed files with 10 additions and 2 deletions
|
@ -86,8 +86,16 @@ pub fn uu_app() -> App<'static, 'static> {
|
||||||
.arg(
|
.arg(
|
||||||
Arg::with_name(options::SE_LINUX_SECURITY_CONTEXT)
|
Arg::with_name(options::SE_LINUX_SECURITY_CONTEXT)
|
||||||
.short(options::SE_LINUX_SECURITY_CONTEXT)
|
.short(options::SE_LINUX_SECURITY_CONTEXT)
|
||||||
.help("set the SELinux security context to default type")
|
.help("set the SELinux security context to default type"),
|
||||||
|
)
|
||||||
|
.arg(
|
||||||
|
Arg::with_name(options::CONTEXT)
|
||||||
|
.long(options::CONTEXT)
|
||||||
|
.value_name("CTX")
|
||||||
|
.help(
|
||||||
|
"like -Z, or if CTX is specified then set the SELinux \
|
||||||
|
or SMACK security context to CTX",
|
||||||
|
),
|
||||||
)
|
)
|
||||||
.arg(Arg::with_name(options::CONTEXT).long(options::CONTEXT).value_name("CTX").help("like -Z, or if CTX is specified then set the SELinux\nor SMACK security context to CTX"))
|
|
||||||
.arg(Arg::with_name(options::FIFO).hidden(true).multiple(true))
|
.arg(Arg::with_name(options::FIFO).hidden(true).multiple(true))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue