fn capture(args: &[&str]) -> Result<Result<String, String>>
Run a tmux command, returning Ok(stdout) on success or Err(stderr) on a non-zero exit (the outer io::Result is for spawn failures).
Ok(stdout)
Err(stderr)
io::Result