forked from extern/nushell
* Begin allowing comments and multiline scripts. * clippy * Finish moving to groups. Test pass * Keep going * WIP * WIP * BROKEN WIP * WIP * WIP * Fix more tests * WIP: alias starts working * Broken WIP * Broken WIP * Variables begin to work * captures start working * A little better but needs fixed scope * Shorthand env setting * Update main merge * Broken WIP * WIP * custom command parsing * Custom commands start working * Fix coloring and parsing of block * Almost there * Add some tests * Add more param types * Bump version * Fix benchmark * Fix stuff
82 lines
2.0 KiB
Rust
82 lines
2.0 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Signature, SyntaxShape};
|
|
use nu_source::Tagged;
|
|
use std::path::PathBuf;
|
|
|
|
pub struct Exec;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct ExecArgs {
|
|
pub command: Tagged<PathBuf>,
|
|
pub rest: Vec<Tagged<String>>,
|
|
}
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for Exec {
|
|
fn name(&self) -> &str {
|
|
"exec"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("exec")
|
|
.required("command", SyntaxShape::Path, "the command to execute")
|
|
.rest(SyntaxShape::Pattern, "any additional arguments for command")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Execute command"
|
|
}
|
|
|
|
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
exec(args).await
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Execute 'ps aux'",
|
|
example: "exec ps aux",
|
|
result: None,
|
|
},
|
|
Example {
|
|
description: "Execute 'nautilus'",
|
|
example: "exec nautilus",
|
|
result: None,
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
async fn exec(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
use std::os::unix::process::CommandExt;
|
|
use std::process::Command;
|
|
|
|
let name = args.call_info.name_tag.clone();
|
|
let (args, _): (ExecArgs, _) = args.process().await?;
|
|
|
|
let mut command = Command::new(args.command.item);
|
|
for tagged_arg in args.rest {
|
|
command.arg(tagged_arg.item);
|
|
}
|
|
|
|
let err = command.exec(); // this replaces our process, should not return
|
|
|
|
Err(ShellError::labeled_error(
|
|
"Error on exec",
|
|
format!("{}", err),
|
|
&name,
|
|
))
|
|
}
|
|
|
|
#[cfg(not(unix))]
|
|
async fn exec(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
Err(ShellError::labeled_error(
|
|
"Error on exec",
|
|
"exec is not supported on your platform",
|
|
&args.call_info.name_tag,
|
|
))
|
|
}
|