coreshift-core 1.0.0

Low-level Linux and Android systems primitives for CoreShift
Documentation
use coreshift_core::spawn::{SpawnBackend, SpawnOptions};

fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("Spawning '/bin/ls -l'...");

    let output = SpawnOptions::builder(
        vec!["/bin/ls".to_string(), "-l".to_string()],
        SpawnBackend::PosixSpawn,
    )
    .capture_stdout()
    .timeout_ms(5000)
    .build()?
    .run()?;

    println!("Exit status: {:?}", output.status);
    println!("Output length: {} bytes", output.stdout.len());
    println!("--- STDOUT ---");
    println!("{}", String::from_utf8_lossy(&output.stdout));
    println!("--------------");

    Ok(())
}