mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 23:02:38 +00:00
du: remove unnecessary spaces from help
This commit is contained in:
parent
a4ce3011fd
commit
dc94a08196
1 changed files with 6 additions and 6 deletions
|
@ -748,9 +748,9 @@ pub fn uu_app<'a>() -> Command<'a> {
|
|||
Arg::new(options::APPARENT_SIZE)
|
||||
.long(options::APPARENT_SIZE)
|
||||
.help(
|
||||
"print apparent sizes, rather than disk usage \
|
||||
although the apparent size is usually smaller, it may be larger due to holes \
|
||||
in ('sparse') files, internal fragmentation, indirect blocks, and the like"
|
||||
"print apparent sizes, rather than disk usage \
|
||||
although the apparent size is usually smaller, it may be larger due to holes \
|
||||
in ('sparse') files, internal fragmentation, indirect blocks, and the like"
|
||||
)
|
||||
)
|
||||
.arg(
|
||||
|
@ -759,8 +759,8 @@ pub fn uu_app<'a>() -> Command<'a> {
|
|||
.long(options::BLOCK_SIZE)
|
||||
.value_name("SIZE")
|
||||
.help(
|
||||
"scale sizes by SIZE before printing them. \
|
||||
E.g., '-BM' prints sizes in units of 1,048,576 bytes. See SIZE format below."
|
||||
"scale sizes by SIZE before printing them. \
|
||||
E.g., '-BM' prints sizes in units of 1,048,576 bytes. See SIZE format below."
|
||||
)
|
||||
)
|
||||
.arg(
|
||||
|
@ -898,7 +898,7 @@ pub fn uu_app<'a>() -> Command<'a> {
|
|||
.possible_values(&["atime", "access", "use", "ctime", "status", "birth", "creation"])
|
||||
.help(
|
||||
"show time of the last modification of any file in the \
|
||||
directory, or any of its subdirectories. If WORD is given, show time as WORD instead \
|
||||
directory, or any of its subdirectories. If WORD is given, show time as WORD instead \
|
||||
of modification time: atime, access, use, ctime, status, birth or creation"
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue