| commit | 9d6ae1aa286fa6788a71f3072b0c6ba33ee321d8 | [log] [tgz] |
|---|---|---|
| author | Andrew Walbran <qwandor@google.com> | Tue May 04 14:32:38 2021 +0000 |
| committer | Andrew Walbran <qwandor@google.com> | Wed May 19 11:36:54 2021 +0000 |
| tree | 025ddd060f0898ea511a83862896dbd7bf7f7795 | |
| parent | 419ee4b117b9188216b22a0e586c54ae2e9292e4 [diff] |
Import command-fds crate. Bug: 188443660 Test: mm Change-Id: Ie9fe9d316d3aa5f73c922f616dcbaf6177dbb3e7
A library for passing arbitrary file descriptors when spawning child processes.
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();
Licensed under the Apache License, Version 2.0.
If you want to contribute to the project, see details of how we accept contributions.