subshells should not inherit FIFOs; initial framework for nofork (foreground) command substitutions

This commit is contained in:
Chet Ramey
2023-05-09 10:33:56 -04:00
parent 896df2874a
commit c375f8f45f
11 changed files with 341 additions and 34 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM alpine:3.17
RUN apk add --no-cache bison coreutils gcc libc-dev make
ncurses-dev libncurses5-dev libncursesw5-dev
WORKDIR /tmp/bash
COPY . .
RUN ./configure --enable-readline --with-curses
RUN make
RUN make tests