1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

cp: insert some spaces into the help text

This commit is contained in:
Michael Debertol 2021-06-18 12:12:06 +02:00
parent 2e027bf45d
commit 73cfcc27e7

View file

@ -375,7 +375,7 @@ pub fn uu_app() -> App<'static, 'static> {
.arg(Arg::with_name(options::UPDATE) .arg(Arg::with_name(options::UPDATE)
.short("u") .short("u")
.long(options::UPDATE) .long(options::UPDATE)
.help("copy only when the SOURCE file is newer than the destination file\ .help("copy only when the SOURCE file is newer than the destination file \
or when the destination file is missing")) or when the destination file is missing"))
.arg(Arg::with_name(options::REFLINK) .arg(Arg::with_name(options::REFLINK)
.long(options::REFLINK) .long(options::REFLINK)
@ -398,7 +398,7 @@ pub fn uu_app() -> App<'static, 'static> {
.conflicts_with_all(&[options::PRESERVE_DEFAULT_ATTRIBUTES, options::NO_PRESERVE]) .conflicts_with_all(&[options::PRESERVE_DEFAULT_ATTRIBUTES, options::NO_PRESERVE])
// -d sets this option // -d sets this option
// --archive sets this option // --archive sets this option
.help("Preserve the specified attributes (default: mode(unix only),ownership,timestamps),\ .help("Preserve the specified attributes (default: mode (unix only), ownership, timestamps), \
if possible additional attributes: context, links, xattr, all")) if possible additional attributes: context, links, xattr, all"))
.arg(Arg::with_name(options::PRESERVE_DEFAULT_ATTRIBUTES) .arg(Arg::with_name(options::PRESERVE_DEFAULT_ATTRIBUTES)
.short("-p") .short("-p")