mirror of
https://github.com/nushell/nushell
synced 2025-01-08 03:09:00 +00:00
42d18d2294
* replace --headerless flags with --noheaders / -n * Update from_csv.rs Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
55 lines
1.2 KiB
Rust
55 lines
1.2 KiB
Rust
use crate::commands::to_delimited_data::to_delimited_data;
|
|
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::Signature;
|
|
|
|
pub struct ToTSV;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct ToTSVArgs {
|
|
noheaders: bool,
|
|
}
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for ToTSV {
|
|
fn name(&self) -> &str {
|
|
"to tsv"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("to tsv").switch(
|
|
"noheaders",
|
|
"do not output the column names as the first row",
|
|
Some('n'),
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Convert table into .tsv text"
|
|
}
|
|
|
|
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
to_tsv(args).await
|
|
}
|
|
}
|
|
|
|
async fn to_tsv(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let name = args.call_info.name_tag.clone();
|
|
let (ToTSVArgs { noheaders }, input) = args.process().await?;
|
|
|
|
to_delimited_data(noheaders, '\t', "TSV", input, name).await
|
|
}
|
|
|
|
#[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 {})
|
|
}
|
|
}
|