mirror of
https://github.com/nushell/nushell
synced 2025-01-09 11:49:00 +00:00
d06f457b2a
* move commands, futures.rs, script.rs, utils * move over maybe_print_errors * add nu_command crate references to nu_cli * in commands.rs open up to pub mod from pub(crate) * nu-cli, nu-command, and nu tests are now passing * cargo fmt * clean up nu-cli/src/prelude.rs * code cleanup * for some reason lex.rs was not formatted, may be causing my error * remove mod completion from lib.rs which was not being used along with quickcheck macros * add in allow unused imports * comment out one failing external test; comment out one failing internal test * revert commenting out failing tests; something else might be going on; someone with a windows machine should check and see what is going on with these failing windows tests * Update Cargo.toml Extend the optional features to nu-command Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
84 lines
2.1 KiB
Rust
84 lines
2.1 KiB
Rust
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
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::FilePath, "the command to execute")
|
|
.rest(
|
|
SyntaxShape::GlobPattern,
|
|
"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,
|
|
))
|
|
}
|