25 releases

0.2.6 Mar 28, 2024
0.2.5 Jul 11, 2023
0.2.3 Dec 14, 2022
0.2.2 Jun 8, 2022
0.1.6 Oct 19, 2020

#1166 in Procedural macros

Download history 45623/week @ 2024-01-19 42112/week @ 2024-01-26 46876/week @ 2024-02-02 50175/week @ 2024-02-09 47548/week @ 2024-02-16 46221/week @ 2024-02-23 47942/week @ 2024-03-01 50853/week @ 2024-03-08 51052/week @ 2024-03-15 49859/week @ 2024-03-22 48779/week @ 2024-03-29 54131/week @ 2024-04-05 55667/week @ 2024-04-12 63340/week @ 2024-04-19 69268/week @ 2024-04-26 67583/week @ 2024-05-03

266,955 downloads per month
Used in 112 crates (via xshell)

MIT/Apache

8KB
194 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.


lib.rs:

Private implementation details of xshell.

No runtime deps