mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-30 04:27:45 +00:00
Merge pull request #3263 from cakebaker/remove_direct_option
df: remove unused "--direct" option
This commit is contained in:
commit
bec00546f1
1 changed files with 0 additions and 6 deletions
|
@ -31,7 +31,6 @@ const USAGE: &str = "{} [OPTION]... [FILE]...";
|
|||
|
||||
static OPT_ALL: &str = "all";
|
||||
static OPT_BLOCKSIZE: &str = "blocksize";
|
||||
static OPT_DIRECT: &str = "direct";
|
||||
static OPT_TOTAL: &str = "total";
|
||||
static OPT_HUMAN_READABLE: &str = "human-readable";
|
||||
static OPT_HUMAN_READABLE_2: &str = "human-readable-2";
|
||||
|
@ -338,11 +337,6 @@ pub fn uu_app<'a>() -> App<'a> {
|
|||
'-BM' prints sizes in units of 1,048,576 bytes",
|
||||
),
|
||||
)
|
||||
.arg(
|
||||
Arg::new(OPT_DIRECT)
|
||||
.long("direct")
|
||||
.help("show statistics for a file instead of mount point"),
|
||||
)
|
||||
.arg(
|
||||
Arg::new(OPT_TOTAL)
|
||||
.long("total")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue