execute-command-macro

Crates.ioexecute-command-macro
lib.rsexecute-command-macro
version0.1.9
sourcesrc
created_at2020-06-09 17:45:57.548248
updated_at2023-11-20 14:16:51.011657
descriptionCreate `Command` instances using the `command!` macro or the `command_args!` marco.
homepagehttps://magiclen.org/execute
repositoryhttps://github.com/magiclen/execute
max_upload_size
id251994
size4,845
Magic Len (Ron Li) (magiclen)

documentation

README

Execute Command Macro

CI

Create Command instances using the command! macro or the command_args! macro.

Also see execute.

Examples

#[macro_use] extern crate execute_command_macro;

let command = command!("program arg1 arg2 'arg 3' -opt1 -opt2");
#[macro_use] extern crate execute_command_macro;

let command = command_args!("program", "arg1", "arg2", "-opt1", "-opt2");

Crates.io

https://crates.io/crates/execute

Documentation

https://docs.rs/execute

License

MIT

Commit count: 28

cargo fmt