#shell #scripting #bash #utilities #script #cmd #git

构建 xshell

Rust 中快速脚本编写的实用工具

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 构建工具

Download history 56902/week @ 2024-04-14 64921/week @ 2024-04-21 73312/week @ 2024-04-28 63681/week @ 2024-05-05 67903/week @ 2024-05-12 69063/week @ 2024-05-19 63910/week @ 2024-05-26 73939/week @ 2024-06-02 63980/week @ 2024-06-09 72856/week @ 2024-06-16 76808/week @ 2024-06-23 67174/week @ 2024-06-30 62760/week @ 2024-07-07 62312/week @ 2024-07-14 65549/week @ 2024-07-21 64108/week @ 2024-07-28

258,066 每月下载量
123 个 Crates 中使用 (直接使用 30 个)

MIT/Apache

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

依赖项