nushell/crates/nu-cli/src/commands/to_tsv.rs
Jason Gedge b2c5af457e
Move most of the root package into a subcrate. (#1445)
This improves incremental build time when working on what was previously
the root package. For example, previously all plugins would be rebuilt
with a change to `src/commands/classified/external.rs`, but now only
`nu-cli` will have to be rebuilt (and anything that depends on it).
2020-03-04 13:58:20 -05:00

46 lines
1.0 KiB
Rust

use crate::commands::to_delimited_data::to_delimited_data;
use crate::commands::WholeStreamCommand;
use crate::prelude::*;
use nu_errors::ShellError;
use nu_protocol::Signature;
pub struct ToTSV;
#[derive(Deserialize)]
pub struct ToTSVArgs {
headerless: bool,
}
impl WholeStreamCommand for ToTSV {
fn name(&self) -> &str {
"to-tsv"
}
fn signature(&self) -> Signature {
Signature::build("to-tsv").switch(
"headerless",
"do not output the column names as the first row",
None,
)
}
fn usage(&self) -> &str {
"Convert table into .tsv text"
}
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,
) -> Result<OutputStream, ShellError> {
to_delimited_data(headerless, '\t', "TSV", runnable_context)
}