Bug: 188443660

Clone this repo:
  1. 424dde9 Migrate 25 crates to monorepo. am: 6678c66304 by James Farrell · 1 year, 1 month ago main master
  2. 6678c66 Migrate 25 crates to monorepo. by James Farrell · 1 year, 1 month ago main-16k
  3. 1553ebc Upgrade command-fds to 0.3.0 am: 72193c9d0b by Jiyong Park · 1 year, 2 months ago
  4. 72193c9 Upgrade command-fds to 0.3.0 by Jiyong Park · 1 year, 2 months ago
  5. c773bc0 Update Android.bp by running cargo_embargo am: 6acf7648b1 by James Farrell · 1 year, 2 months ago

command-fds

crates.io page docs.rs page

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.