4 个版本
0.1.3 | 2019 年 6 月 20 日 |
---|---|
0.1.2 | 2019 年 6 月 20 日 |
0.1.1 | 2019 年 1 月 1 日 |
0.1.0 | 2018 年 12 月 21 日 |
141 在 #environment-variables
每月下载 292 次
用于 moltenvk_deps
6KB
62 行
env_perm
该软件包允许您永久设置环境变量
示例
// Check if DUMMY is set, if not set it to 1
// export DUMMY=1
env_perm::check_or_set("DUMMY", 1).expect("Failed to find or set DUMMY");
// Append $HOME/some/cool/bin to $PATH
// export PATH= "$HOME/some/cool/bin:$PATH"
env_perm::append("PATH", "$HOME/some/cool/bin").expect("Couldn't find PATH");
// Sets a variable without checking if it exists.
// Note you need to use a raw string literal to include ""
// export DUMMY="/something"
env_perm::set("DUMMY", r#""/something""#).expect("Failed to set DUMMY");
用法
此软件包简单地将您的 .bash_profile
或 .bash_login
或 .profile
追加到配置文件中。如果上述文件在您的家目录中都没有找到,它将创建一个 .bash_profile
文件。ie. /Users/me/.bash_profile
.
我只在 macOS 上测试了此软件包,但它应该适用于任何 Unix 系统。我打算很快添加 Windows 支持。
欢迎贡献。
lib.rs
:
该软件包允许您永久设置环境变量
示例
// Check if DUMMY is set, if not set it to 1
// export DUMMY=1
env_perm::check_or_set("DUMMY", 1).expect("Failed to find or set DUMMY");
// Append $HOME/some/cool/bin to $PATH
// export PATH= "$HOME/some/cool/bin:$PATH"
env_perm::append("PATH", "$HOME/some/cool/bin").expect("Couldn't find PATH");
// Sets a variable without checking if it exists.
// Note you need to use a raw string literal to include ""
// export DUMMY="/something"
env_perm::set("DUMMY", r#""/something""#).expect("Failed to set DUMMY");
依赖
~39–420KB