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

51 lines
1.2 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::prelude::*;
use nu_engine::WholeStreamCommand;
use nu_errors::ShellError;
use nu_protocol::Signature;
2019-08-29 11:02:16 +02:00
pub struct ToTsv;
2019-08-29 11:02:16 +02:00
impl WholeStreamCommand for ToTsv {
2019-08-29 11:02:16 +02:00
fn name(&self) -> &str {
"to tsv"
2019-08-29 11:02:16 +02:00
}
fn signature(&self) -> Signature {
Signature::build("to tsv").switch(
"noheaders",
2019-10-28 06:15:35 +01:00
"do not output the column names as the first row",
Some('n'),
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) -> Result<OutputStream, ShellError> {
to_tsv(args)
2019-08-29 11:02:16 +02:00
}
}
fn to_tsv(args: CommandArgs) -> Result<OutputStream, ShellError> {
let name = args.call_info.name_tag.clone();
let args = args.evaluate_once()?;
let noheaders = args.has_flag("noheaders");
to_delimited_data(noheaders, '\t', "TSV", args.input, name)
2019-08-29 11:02:16 +02:00
}
#[cfg(test)]
mod tests {
use super::ShellError;
use super::ToTsv;
#[test]
fn examples_work_as_expected() -> Result<(), ShellError> {
use crate::examples::test as test_examples;
test_examples(ToTsv {})
}
}