3 个版本 (稳定版)
使用旧的Rust 2015
1.1.0 | 2022年2月6日 |
---|---|
1.0.0 | 2020年5月6日 |
0.1.0 | 2018年3月9日 |
#25 in Unix API
1,046,542 每月下载量
在 1,936 个crate中使用 (直接使用303个)
19KB
361 行
shell-words
根据Unix shell的解析规则处理命令行。
用法
将此添加到Cargo.toml
[dependencies]
shell-words = "1.0.0"
将此添加到您的crate中
extern crate shell_words;
示例
分割
将C源代码编译成可执行文件,类似于GNU Make中默认的构建规则
extern crate shell_words;
use std::env::var;
use std::process::Command;
fn main() {
let cc = var("CC").unwrap_or_else(|_| "cc".to_owned());
let cflags = var("CFLAGS").unwrap_or_else(|_| String::new());
let cflags = shell_words::split(&cflags).expect("failed to parse CFLAGS");
let cppflags = var("CPPFLAGS").unwrap_or_else(|_| String::new());
let cppflags = shell_words::split(&cppflags).expect("failed to parse CPPFLAGS");
Command::new(cc)
.args(cflags)
.args(cppflags)
.args(&["-c", "a.c", "-o", "a.out"])
.spawn()
.expect("failed to start subprocess")
.wait()
.expect("failed to wait for subprocess");
}
连接
以可以直接复制粘贴到shell的格式记录执行的命令
extern crate shell_words;
fn main() {
let argv = &["python", "-c", "print('Hello world!')"];
println!("Executing: {}", shell_words::join(argv));
std::process::Command::new(&argv[0])
.args(&argv[1..])
.spawn()
.expect("failed to start subprocess")
.wait()
.expect("failed to wait for subprocess");
}
错误
请在 https://github.com/tmiasko/shell-words/issues 报告任何问题。
许可证
根据以下任一许可证授权
- Apache许可证2.0 (LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
任选其一。
贡献
除非您明确声明,否则您有意提交给作品以供包含的贡献,根据Apache-2.0许可证定义,将按上述方式双授权,没有任何附加条款或条件。