commandspec
commandspec copied to clipboard
Rust macro to build std::process::Command objects with shell syntax. Uses macro_rules! and works on stable.
Hi, thanks for maintaining the repository. I've been trying to make a cli tool for myself where I can run series of commands & I found this repository. So, I...
In cmd inwindows I can do > dir /b /s but all the shell in rust are designed for argument no options commnadspec I saw that can pass options in...
See https://crates.io/crates/sh-inline
Hi! I need to run several commands in a row. Now, I do it like this: ``` fn install_code_extension() -> Result { execute!(r" cd code npm install ")?; execute!(r" cd...
The `failure` crate isn't being actively developed anymore; having it as a dependency in the public API is a problem for consumers that don't use it. Instead, use anyhow/thiserror; in...
Just a drive by cleanup.
This aids compatibility with Rust 2018.
Both will use JobObjects