I want to create a mini shell for UNIX just to know the ins and outs of everything. I am having some confusions understanding things that I used to get for granted. This is kinda philosophical question. When I creating a "shell", I assume I have a UNIX with no shell, so what would be the std in and std out in this case? doesnt functions like system() and exec() use the shell to execute programs, so if I am creating a shell in the first place. How do these functions work?
|
There are several functions in the The shells could use
The standard input and output is set up by whichever program spawned the shell. If a user logs in on the console directly, it'll be handled by |
||||
|
|
|
One difference is that with system(), you will see sugar like wildcards being expanded, whereas if you pass A shell can be implemented using exec() among other things. It gets its stdin and stdout from something called the TTY (teletype, or old-school terminal) or PTY (pseudo-terminal, as in modern systems). See |
|||
|
|