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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
use std::path::Path;
use std::process::Command;
pub fn cd(new_dir: &str) -> std::path::PathBuf {
let root = match std::fs::canonicalize(Path::new(new_dir)) {
Ok(p) => p,
Err(_) => Path::new("/").to_path_buf(),
};
if let Err(e) = std::env::set_current_dir(&root) {
eprintln!("{}", e);
}
root.to_path_buf()
}
pub fn run(command: &str, args: &[&str]) {
let mut child = Command::new(command).args(args).spawn().unwrap();
child.wait().unwrap();
}
/*
match command {
command => {
let stdin = match previous_command {
None => Stdio::inherit(),
Some(cmd) => Stdio::from(cmd.stdout.unwrap()),
};
let stdout = match commands.peek().is_some() {
true => Stdio::piped(),
false => Stdio::inherit(),
};
let child = Command::new(command)
.args(args)
.stdin(stdin)
.stdout(stdout)
.spawn();
match child {
Ok(c) => previous_command = Some(c),
Err(e) => {
previous_command = None;
eprintln!("{}", e);
}
}
}
}
}
if let Some(mut final_command) = previous_command {
match final_command.wait() {
Ok(ret) => match ret.code() {
Some(code) => {
if cfg!(debug_assertions) {
println!("exit code [{}]", code);
}
}
None => println!("Process termed by signal"),
},
Err(e) => eprintln!("error waiting on final command: {}", e),
}
}*/
|