Codex Handbook
shell-escalation/src/bin/main_execve_wrapper.rs 8 lines
#[cfg(not(unix))]fn main() {    eprintln!("codex-execve-wrapper is only implemented for UNIX");    std::process::exit(1);}#[cfg(unix)]pub use codex_shell_escalation::main_execve_wrapper as main;