24 个版本
0.2.6 | 2024 年 3 月 28 日 |
---|---|
0.2.5 | 2023 年 7 月 11 日 |
0.2.3 | 2022 年 12 月 14 日 |
0.2.2 | 2022 年 6 月 8 日 |
0.1.6 | 2020 年 10 月 19 日 |
#20 in 构建工具
258,066 每月下载量
在 123 个 Crates 中使用 (直接使用 30 个)
48KB
716 行
xshell:让 Rust 成为更好的 Bash
xshell
提供了一组跨平台实用工具,用于编写跨平台的“bash”脚本。
示例
//! Clones a git repository and publishes it to crates.io.
use xshell::{cmd, Shell};
fn main() -> anyhow::Result<()> {
let sh = Shell::new()?;
let user = "matklad";
let repo = "xshell";
cmd!(sh, "git clone https://github.com/{user}/{repo}.git").run()?;
sh.change_dir(repo);
let test_args = ["-Zunstable-options", "--report-time"];
cmd!(sh, "cargo test -- {test_args...}").run()?;
let manifest = sh.read_file("Cargo.toml")?;
let version = manifest
.split_once("version = \"")
.and_then(|it| it.1.split_once('\"'))
.map(|it| it.0)
.ok_or_else(|| anyhow::format_err!("can't find version field in the manifest"))?;
cmd!(sh, "git tag {version}").run()?;
let dry_run = if sh.var("CI").is_ok() { None } else { Some("--dry-run") };
cmd!(sh, "cargo publish {dry_run...}").run()?;
Ok(())
}
更多内容请参阅 文档。
如果您喜欢 xshell 的理念,您会喜欢 dax。