Revert "Port command examples to long option" (#10597)

Reverts nushell/nushell#10596

Using the long option in examples is going to be confusing as it makes
the reader think the long option is required. It also isn't idiomatic
Nushell.

The examples should be copy-paste-able as idiomatic Nushell, so as such
we shouldn't expand them to the long flag name.
This commit is contained in:
JT
2023-10-04 09:41:13 +13:00
committed by GitHub
parent 4a82ee6c11
commit 8c507dc984
4 changed files with 8 additions and 8 deletions

View File

@ -359,12 +359,12 @@ impl Command for Cp {
},
Example {
description: "Recursively copy dir_a to dir_b",
example: "cp --recursive dir_a dir_b",
example: "cp -r dir_a dir_b",
result: None,
},
Example {
description: "Recursively copy dir_a to dir_b, and print the feedbacks",
example: "cp --recursive --verbose dir_a dir_b",
example: "cp -r -v dir_a dir_b",
result: None,
},
Example {
@ -374,7 +374,7 @@ impl Command for Cp {
},
Example {
description: "Copy only if source file is newer than target file",
example: "cp --update a b",
example: "cp -u a b",
result: None,
},
]

View File

@ -68,12 +68,12 @@ impl Command for UCp {
},
Example {
description: "Recursively copy dir_a to dir_b",
example: "ucp --recursive dir_a dir_b",
example: "ucp -r dir_a dir_b",
result: None,
},
Example {
description: "Recursively copy dir_a to dir_b, and print the feedbacks",
example: "ucp --recursive --verbose dir_a dir_b",
example: "ucp -r -v dir_a dir_b",
result: None,
},
Example {