Process Interface #4
Labels
L: design
Designs, ideas and questions with tangible goals
M: process
Module: Process exec/fork and IO
T: io
Topic: Input and output related issues
Milestone
Today I've written a little bit of code that uses
fork
,wait
andexecvp
directly. There's built in support for this kind of thing instd::process
, however I'm not 100% sure which approach will be needed yet. We either need to beef up the command interface insidemod job
or replace it with something that exists.Key features to support:
foo -b -bar --baz "more stuff"
)CString
conversion function(s)FOO=bar env
) Program Environments / Variables #27$(FOO=1); echo $FOO
) Subshells #58, Program Environments / Variables #27|
, and possibly|&
shorthand) Nested Pipelines #12, Program Environments / Variables #27$?
,!
,&&
,||
) Job Status Codes #25, Special Parameters #54&
,wait
, etc) Background Jobs #6[n]<
,[n]>>
,[n]>&
) IO Redirection #26exit
,cd
, etc) Builtins #24The text was updated successfully, but these errors were encountered: