nushell/crates/nu-cli/src/commands/to_tsv.rs

46 lines
1.0 KiB
Rust
Raw Normal View History

use crate::commands::to_delimited_data::to_delimited_data;
2019-08-29 11:02:16 +02:00
use crate::commands::WholeStreamCommand;
use crate::prelude::*;
use nu_errors::ShellError;
use nu_protocol::Signature;
2019-08-29 11:02:16 +02:00
pub struct ToTSV;
#[derive(Deserialize)]
pub struct ToTSVArgs {
headerless: bool,
}
impl WholeStreamCommand for ToTSV {
fn name(&self) -> &str {
"to tsv"
2019-08-29 11:02:16 +02:00
}
fn signature(&self) -> Signature {
Signature::build("to tsv").switch(
2019-10-28 06:15:35 +01:00
"headerless",
"do not output the column names as the first row",
None,
2019-10-28 06:15:35 +01:00
)
}
fn usage(&self) -> &str {
"Convert table into .tsv text"
2019-08-29 11:02:16 +02:00
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
args.process(registry, to_tsv)?.run()
}
}
fn to_tsv(
ToTSVArgs { headerless }: ToTSVArgs,
runnable_context: RunnableContext,
2019-08-29 11:02:16 +02:00
) -> Result<OutputStream, ShellError> {
to_delimited_data(headerless, '\t', "TSV", runnable_context)
2019-08-29 11:02:16 +02:00
}