commandspec icon indicating copy to clipboard operation
commandspec copied to clipboard

Rust macro to build std::process::Command objects with shell syntax. Uses macro_rules! and works on stable.

Results 8 commandspec issues
Sort by recently updated
recently updated
newest added

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...

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...

This aids compatibility with Rust 2018.