changed from 'output' to 'file'.

This commit is contained in:
merelymyself 2022-05-29 19:56:52 +08:00
parent 6d951751cf
commit 6baf718f91

View File

@ -65,10 +65,10 @@ impl Command for SubCommand {
Some('r'), Some('r'),
) )
.named( .named(
"output", "file",
SyntaxShape::Filepath, SyntaxShape::Filepath,
"save contents into a file", "save contents into a file",
Some('o'), Some('f'),
) )
.switch( .switch(
"bin", "bin",
@ -105,15 +105,15 @@ impl Command for SubCommand {
call: &Call, call: &Call,
input: PipelineData, input: PipelineData,
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> { ) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
let output = call.has_flag("output"); let file = call.has_flag("file");
if !output { if !file {
run_fetch(engine_state, stack, call, input) run_fetch(engine_state, stack, call, input)
} else { } else {
match run_fetch(engine_state, stack, call, input) { match run_fetch(engine_state, stack, call, input) {
Err(err) => Err(err), Err(err) => Err(err),
Ok(value) => { Ok(value) => {
let path: Value = call let path: Value = call
.get_flag(engine_state, stack, "output") .get_flag(engine_state, stack, "file")
.expect("there should be a value") .expect("there should be a value")
.expect("value should be unwrappable"); .expect("value should be unwrappable");
let bin = call.has_flag("bin"); let bin = call.has_flag("bin");
@ -134,7 +134,7 @@ impl Command for SubCommand {
Ok(file) => file, Ok(file) => file,
Err(err) => { Err(err) => {
let arg_span = let arg_span =
call.get_named_arg("output").expect("arg should exist").span; call.get_named_arg("file").expect("arg should exist").span;
return Ok(PipelineData::Value( return Ok(PipelineData::Value(
Value::Error { Value::Error {
error: ShellError::GenericError( error: ShellError::GenericError(