C-Shell
A simple shell written in C.
|
#include <shelltypes.h>
Data Fields | |
struct job * | next |
char * | user_command |
struct command * | first_command |
pid_t | pgid |
bool | background |
A job is a pipeline of commands.
bool job::background |
True if background job.
struct command* job::first_command |
List of commands in this job.
struct job* job::next |
Next active job
pid_t job::pgid |
Process group ID.
char* job::user_command |
The command that created this job.