In the curriculum, Exam 06 (often referred to as Exam Rank 06 ) is the final exam of the common core. It serves as a rigorous practical test of your ability to build a functional network application from scratch using low-level C. Core Objective: The mini_serv
| Feature | Description | |---------|-------------| | Prompt | Display a prompt (e.g., minishell$ ) while waiting for input | | Command execution | Execute absolute/relative paths ( /bin/ls , ./myprog ) and commands from $PATH | | Input/output redirections | < (input), > (output), >> (append output) | | Pipes | \| – Connect multiple commands with standard pipes | | Environment variables | Expand $VAR (e.g., $HOME , $USER ) | | Exit status | $? expands to the last command’s exit status | | Signal handling | ctrl-C , ctrl-D , ctrl-\ behave like bash (new prompt, exit, ignore) | | Built-in commands | echo , cd , pwd , export , unset , env , exit | | Quotes | Single quotes (no expansion) and double quotes (expand $VAR but not wildcards) | 42 Exam 06
Rating: ★★★★☆ (4/5)