Common rust command-line macros and utilities, to write shell-script like tasks easily in rust programming language. Available at crates.io.
```rust let name = "rust"; runcmd!(echo $name)?; runcmd!(|name| echo "hello, $name")?;
// pipe commands are also supported run_cmd!(du -ah . | sort -hr | head -n 10)?;
// or a group of commands // if any command fails, just return Err(...) let file = "/tmp/f"; let keyword = "rust"; if runcmd! { cat ${file} | grep ${keyword}; echo "bad cmd"; ls -l /nofile; date; }.iserr() { warn!("Run group command failed"); } ```
```rust let version = run_fun!(rustc --version).unwrap(); eprintln!("Your rust version is {}", version);
// with pipes let n = run_fun!(echo "the quick brown fox jumped over the lazy dog" | wc -w).unwrap(); eprintln!("There are {} words in above sentence", n); ```
```rust sh! { fn foo() -> CmdResult { let file = "/tmp/f"; #(ls $file)?; Ok(()) }
fn bar(a: &str) -> FunResult {
$(date +%Y)
}
}
or inside a function:
rust
fn main() -> CmdResult {
...
sh! {
#(mkfs.ext3 -b 4096 /dev/sda)?;
if #(ls /tmp).is_ok() {
println!("running cmd success");
} else {
println!("running cmd failed");
}
}
}
```
parameters could be passed much clearer in this style
```rust
Process::new("du -ah .")
.pipe("sort -hr")
.pipe("head -n 5")
.wait::
Process::new("ls")
.pipe("wc -l")
.current_dir("/src/rust-shell-script/")
.wait::
pwd: print current working directory
cd: set procecess current directory
rust
run_cmd! {
cd /tmp;
ls | wc -l;
};
run_cmd!(pwd);
output will be "/tmp"
lcd: set group commands current directory
rust
run_cmd! {
lcd /tmp;
ls | wc -l;
};
run_cmd!(pwd);
output will be the old current directory
```rust use cmdlib::{sh, runcmd, run_fun, CmdResult, FunResult};
sh! { fn foo(time: &str) -> CmdResult { let wait = 3; #(sleep $wait)?; #(ls $f)?; }
fn get_year() -> FunResult {
$(date +%Y)
}
}
fn main() -> CmdResult { run_cmd!(lcd /tmp; ls | wc -l;)?;
let name = "rust";
run_cmd!(echo "hello, $name")?;
let result = run_fun!(du -ah . | sort -hr | head -n 5)?;
eprintln!("Top 5 directories:\n{}", result);
if foo().is_err() {
eprintln!("Failed to run foo()");
}
if get_year()? == "2020" {
eprintln!("You are in year 2020");
} else {
eprintln!("Which year are you in ?");
}
Ok(())
} ```
See rust-shell-script, which can compile rust-shell-script scripting language directly into rust code.