You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
2 years ago | |
|---|---|---|
| .. | ||
| .github/workflows | 2 years ago | |
| examples | 2 years ago | |
| src | 2 years ago | |
| testdata | 2 years ago | |
| .cargo_vcs_info.json | 2 years ago | |
| .gitignore | 2 years ago | |
| Android.bp | 2 years ago | |
| CONTRIBUTING.md | 2 years ago | |
| Cargo.toml | 2 years ago | |
| Cargo.toml.orig | 2 years ago | |
| LICENSE | 2 years ago | |
| METADATA | 2 years ago | |
| MODULE_LICENSE_APACHE2 | 2 years ago | |
| OWNERS | 2 years ago | |
| README.md | 2 years ago | |
| TEST_MAPPING | 2 years ago | |
| cargo2android.json | 2 years ago | |
README.md
command-fds
A library for passing arbitrary file descriptors when spawning child processes.
Example
use command_fds::{CommandFdExt, FdMapping};
use std::fs::File;
use std::os::unix::io::AsRawFd;
use std::process::Command;
// Open a file.
let file = File::open("Cargo.toml").unwrap();
// Prepare to run `ls -l /proc/self/fd` with some FDs mapped.
let mut command = Command::new("ls");
command.arg("-l").arg("/proc/self/fd");
command
.fd_mappings(vec![
// Map `file` as FD 3 in the child process.
FdMapping {
parent_fd: file.as_raw_fd(),
child_fd: 3,
},
// Map this process's stdin as FD 5 in the child process.
FdMapping {
parent_fd: 0,
child_fd: 5,
},
])
.unwrap();
// Spawn the child process.
let mut child = command.spawn().unwrap();
child.wait().unwrap();
License
Licensed under the Apache License, Version 2.0.
Contributing
If you want to contribute to the project, see details of how we accept contributions.