crispPacketTriangle / minishell

1 stars 0 forks source link

Handle parentheses for subshells. #17

Closed sjtobin closed 3 weeks ago

sjtobin commented 1 month ago

Parentheses should launch a new shell process which runs any passed commands while not affecting the parent process, e.g.

$ (cd .. ; ls) $ ls | (wc -l)

sjtobin commented 3 weeks ago

This is already handled, right @crispPacketTriangle? In which file/function?

crispPacketTriangle commented 3 weeks ago

Partially handled. Requires some fine tuning, or else decisions on what is undefined behaviour or should be error handled