mirror of
https://github.com/nushell/nushell.git
synced 2025-04-06 01:58:16 +02:00
50 lines
1.1 KiB
Rust
50 lines
1.1 KiB
Rust
use nu_engine::get_full_help;
|
|
use nu_protocol::{
|
|
ast::Call,
|
|
engine::{Command, EvaluationContext},
|
|
IntoPipelineData, PipelineData, Signature, Value,
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct SplitCommand;
|
|
|
|
impl Command for SplitCommand {
|
|
fn name(&self) -> &str {
|
|
"split"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("split")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Split contents across desired subcommand (like row, column) via the separator."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
context: &EvaluationContext,
|
|
call: &Call,
|
|
_input: PipelineData,
|
|
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
|
Ok(Value::String {
|
|
val: get_full_help(&SplitCommand.signature(), &SplitCommand.examples(), context),
|
|
span: call.head,
|
|
}
|
|
.into_pipeline_data())
|
|
}
|
|
}
|
|
|
|
// #[cfg(test)]
|
|
// mod tests {
|
|
// use super::Command;
|
|
// use super::ShellError;
|
|
|
|
// #[test]
|
|
// fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
// use crate::examples::test as test_examples;
|
|
|
|
// test_examples(Command {})
|
|
// }
|
|
// }
|