1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use crate::error::Error;
use crate::tmux_interface::*;
use std::process::Output;

impl<'a> TmuxInterface<'a> {
    #[cfg(not(feature = "use_cmd_alias"))]
    const RUN_SHELL: &'static str = "run-shell";
    #[cfg(feature = "use_cmd_alias")]
    const RUN_SHELL: &'static str = "run";

    /// # Manual
    ///
    /// tmux ^1.8:
    /// ```text
    /// tmux run-shell [-b] [-t target-pane] shell-command
    /// (alias: run)
    /// ```
    ///
    /// tmux ^1.2:
    /// ```text
    /// tmux run-shell shell-command
    /// (alias: run)
    /// ```
    ///
    /// tmux ^1.1:
    /// ```text
    /// tmux run-shell command
    /// (alias: run)
    /// ```
    pub fn run_shell(
        &mut self,
        backgroud: Option<bool>,
        target_pane: Option<&str>,
        shell_command: &str,
    ) -> Result<Output, Error> {
        let mut args: Vec<&str> = Vec::new();
        if backgroud.unwrap_or(false) {
            args.push(b_KEY);
        }
        if let Some(target_pane) = target_pane {
            args.extend_from_slice(&[t_KEY, &target_pane])
        }
        args.push(shell_command);
        let output = self.command(TmuxInterface::RUN_SHELL, &args)?;
        Ok(output)
    }
}