#file-descriptor #child-process #process #process-file #child #fd #subprocess

command-fds

A library for passing arbitrary file descriptors when spawning child processes

6 releases

0.3.0 Dec 12, 2023
0.2.3 Oct 31, 2023
0.2.2 Apr 1, 2022
0.2.1 Aug 12, 2021
0.1.0 May 4, 2021

#238 in Unix APIs

Download history 14834/week @ 2024-08-26 12591/week @ 2024-09-02 14481/week @ 2024-09-09 13072/week @ 2024-09-16 14533/week @ 2024-09-23 22296/week @ 2024-09-30 9266/week @ 2024-10-07 19340/week @ 2024-10-14 14004/week @ 2024-10-21 17247/week @ 2024-10-28 7574/week @ 2024-11-04 31259/week @ 2024-11-11 33478/week @ 2024-11-18 9421/week @ 2024-11-25 28643/week @ 2024-12-02 23209/week @ 2024-12-09

95,099 downloads per month
Used in 17 crates (10 directly)

Apache-2.0

19KB
284 lines

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.

Dependencies

~1.8–10MB
~111K SLoC