mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
df: --output
option conflicts with -i
, -P
, -T
This commit is contained in:
parent
e77c8ff381
commit
c849b8722f
1 changed files with 3 additions and 0 deletions
|
@ -338,6 +338,7 @@ pub fn uu_app<'a>() -> App<'a> {
|
|||
Arg::new(OPT_INODES)
|
||||
.short('i')
|
||||
.long("inodes")
|
||||
.conflicts_with(OPT_OUTPUT)
|
||||
.help("list inode information instead of block usage"),
|
||||
)
|
||||
.arg(Arg::new(OPT_KILO).short('k').help("like --block-size=1K"))
|
||||
|
@ -367,6 +368,7 @@ pub fn uu_app<'a>() -> App<'a> {
|
|||
Arg::new(OPT_PORTABILITY)
|
||||
.short('P')
|
||||
.long("portability")
|
||||
.conflicts_with(OPT_OUTPUT)
|
||||
.help("use the POSIX output format"),
|
||||
)
|
||||
.arg(
|
||||
|
@ -388,6 +390,7 @@ pub fn uu_app<'a>() -> App<'a> {
|
|||
Arg::new(OPT_PRINT_TYPE)
|
||||
.short('T')
|
||||
.long("print-type")
|
||||
.conflicts_with(OPT_OUTPUT)
|
||||
.help("print file system type"),
|
||||
)
|
||||
.arg(
|
||||
|
|
Loading…
Reference in a new issue