25 releases

new 0.2.7 Nov 16, 2024
0.2.6 Mar 28, 2024
0.2.5 Jul 11, 2023
0.2.3 Dec 14, 2022
0.1.6 Oct 19, 2020

#13 in Build Utils

Download history 65992/week @ 2024-07-31 62922/week @ 2024-08-07 60300/week @ 2024-08-14 59262/week @ 2024-08-21 55036/week @ 2024-08-28 62927/week @ 2024-09-04 52764/week @ 2024-09-11 56928/week @ 2024-09-18 59923/week @ 2024-09-25 60745/week @ 2024-10-02 60083/week @ 2024-10-09 67400/week @ 2024-10-16 61765/week @ 2024-10-23 63003/week @ 2024-10-30 60321/week @ 2024-11-06 67269/week @ 2024-11-13

265,101 downloads per month
Used in 135 crates (34 directly)

MIT/Apache

48KB
716 lines

xshell: Making Rust a Better Bash

xshell provides a set of cross-platform utilities for writing cross-platform and ergonomic "bash" scripts.

Example

//! 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(())
}

See the docs for more.

If you like the ideas behind xshell, you will enjoy dax.

Dependencies