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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
use crate::;
/// 执行 `brew config` 命令并得到结构体
///
/// Examples
///
/// ```
/// use homebrew;
///
/// let config = homebrew::config().unwrap();
/// assert_eq!(config.origin, "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git");
/// assert_eq!(config.prefix, "/opt/homebrew");
/// ```
/// 执行 `brew --cache` 命令
///
/// Examples
///
/// ```
/// use homebrew;
///
/// let out = homebrew::cache().unwrap();
/// assert_eq!(out, "/Users/wxnacy/Library/Caches/Homebrew");
/// ```
/// 执行 `brew --version` 命令
///
/// Examples
///
/// ```
/// use homebrew;
///
/// let out = homebrew::version().unwrap();
/// assert_eq!(out, "Homebrew 4.4.15-70-g1e91082");
/// ```
/// 执行 `brew --repository` 命令
///
/// Examples
///
/// ```
/// use homebrew;
///
/// let out = homebrew::repository().unwrap();
/// assert_eq!(out, "/opt/homebrew");
/// ```
/// 执行 `brew --prefix` 命令
///
/// Examples
///
/// ```
/// use homebrew;
///
/// let out = homebrew::prefix().unwrap();
/// assert_eq!(out, "/opt/homebrew");
/// ```
/// 执行 `brew --caskroom` 命令
///
/// Examples
///
/// ```
/// use homebrew;
///
/// let out = homebrew::caskroom().unwrap();
/// assert_eq!(out, "/opt/homebrew/Caskroom");
/// ```
/// 执行 `brew --cellar` 命令
///
/// Examples
///
/// ```
/// use homebrew;
///
/// let out = homebrew::cellar().unwrap();
/// assert_eq!(out, "/opt/homebrew/Cellar");
/// ```
/// 执行 `brew --env --plain` 命令并得到结构体
///
/// Examples
///
/// ```
/// use homebrew;
///
/// let config = homebrew::env().unwrap();
/// assert_eq!(config.cmake_prefix_path, "/opt/homebrew");
/// assert_eq!(config.git, "git");
/// ```
/// 执行 `brew --env --shell=auto` 命令并得到 shell 文本
///
/// Examples
///
/// ```
/// use homebrew;
///
/// let config = homebrew::env_shell().unwrap();
/// println!("{config}");
/// ```