Skip to content

v0.7.16

Choose a tag to compare

@ggoodman ggoodman released this 03 Jun 15:56
b5508ab

Standard file descriptor links

Sandbox now creates the standard Linux file descriptor links during guest init:

/dev/fd -> /proc/self/fd
/dev/stdin -> /proc/self/fd/0
/dev/stdout -> /proc/self/fd/1
/dev/stderr -> /proc/self/fd/2

This fixes common shell and tool workflows that expect /dev/fd to exist, including Bash process substitution such as cat < <(printf hi).