4 个版本
使用旧的 Rust 2015
0.2.0 | 2024年2月2日 |
---|---|
0.1.2 | 2022年7月9日 |
0.1.1 | 2022年7月7日 |
0.1.0 | 2022年7月7日 |
#8 在 #read-input
被 2 crates 使用
3KB
read_pipe
一个简单的 Rust crate,用于从 stdin 读取管道。
使用方法
if let Some(pipe) = read_pipe::read_pipe() {
println!("User has piped \"{pipe}\" to the program.")
}
示例
输入
echo "Really interesting pipe" | cargo run
输出
Some("Really interesting pipe")
输入
cargo run
输出
None