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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
use std::collections::BTreeMap;
use std::env;
use std::os::unix::process::ExitStatusExt;
use std::process::{ExitStatus, Output};
/// export
///
/// The builtin `export` command. Used to set global environment variables for
/// the current instance of the shell.
///
/// # Aliases
/// * export
/// * set
///
/// # Shell Examples
/// ```sh
/// export FOO=BAR
/// ```
pub fn incant(clause: &Option<Vec<String>>, uout: bool) -> Output {
let status = 0;
let mut out: Vec<u8> = Vec::new();
let err: Vec<u8> = Vec::new();
match clause {
Some(clause) => {
for stanza in clause {
let (key, val) = match stanza.split_once("=") {
Some((key, val)) => (key, val),
None => continue,
};
env::set_var(key, val);
}
}
None => {
let mut lines = Vec::new();
let sorted: BTreeMap<_, _> = env::vars().into_iter().collect();
for (key, val) in sorted {
lines.push(format!("{}={}", key, val));
}
if uout {
out.append(&mut format!("{}\n", lines.join("\n")).as_bytes().to_vec());
} else {
println!("{}", lines.join("\n"));
}
}
}
Output {
status: ExitStatus::from_raw(status),
stdout: out,
stderr: err,
}
}
/// unset
///
/// The builtin `unset` command. Used to remove global environment variables
/// from the current instance of the shell, since `export` may be called with
/// an empty string as the value.
///
/// # Shell Examples
/// ```sh
/// unset FOO
/// ```
pub fn unincant(clause: &Option<Vec<String>>, uerr: bool) -> Output {
let mut status = 0;
let out: Vec<u8> = Vec::new();
let mut err: Vec<u8> = Vec::new();
match clause {
Some(clause) => {
for stanza in clause {
env::remove_var(stanza);
}
}
None => {
status = 1;
if uerr {
err.append(&mut "unset: not enough arguments\n".as_bytes().to_vec());
} else {
eprintln!("unset: not enough arguments");
}
}
}
Output {
status: ExitStatus::from_raw(status),
stdout: out,
stderr: err,
}
}
|