mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-30 04:27:45 +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)
|
Arg::new(OPT_INODES)
|
||||||
.short('i')
|
.short('i')
|
||||||
.long("inodes")
|
.long("inodes")
|
||||||
|
.conflicts_with(OPT_OUTPUT)
|
||||||
.help("list inode information instead of block usage"),
|
.help("list inode information instead of block usage"),
|
||||||
)
|
)
|
||||||
.arg(Arg::new(OPT_KILO).short('k').help("like --block-size=1K"))
|
.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)
|
Arg::new(OPT_PORTABILITY)
|
||||||
.short('P')
|
.short('P')
|
||||||
.long("portability")
|
.long("portability")
|
||||||
|
.conflicts_with(OPT_OUTPUT)
|
||||||
.help("use the POSIX output format"),
|
.help("use the POSIX output format"),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
@ -388,6 +390,7 @@ pub fn uu_app<'a>() -> App<'a> {
|
||||||
Arg::new(OPT_PRINT_TYPE)
|
Arg::new(OPT_PRINT_TYPE)
|
||||||
.short('T')
|
.short('T')
|
||||||
.long("print-type")
|
.long("print-type")
|
||||||
|
.conflicts_with(OPT_OUTPUT)
|
||||||
.help("print file system type"),
|
.help("print file system type"),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue