42sh school project.
By mbrella, qmartina, wstygg, plettie.
Final grade : 100/100
More than 10 000 lines of pure C, even the library was written by ourselves. No memory leaks, no crash were allowed. The most impressive project of the first cycle of 42 school cursus.
Mandatory part:
- Prompt without line edition.
- Builtins
cd,echo,exit,env,export,unexportwith there options. - Executing simple commands with there parameters using
PATH. - Support for redirection
>,>>,<and|. - Logical operand
&&and||. - Separator
;.
Optional feature (five of theses are mandatory to validate the project):
- Inhibitors
",'and\. - Advanced redirections: aggregation of file output and heredoc
<<. - Globbing:
*,?,[],{}, etc. - Backquotes `.
- Subshell with operand
(). - Local variable and builtin
unsetandexport. - History with builtin
historyand!with options. - Advanced line edition.
- File descriptors and builtin
readwith options. - Dynamical autocompletion.
Optional feature highly appreciated:
- Job Control and builtins
job,fg,bgand operand&.
| Keys | Functions |
|---|---|
| Opt+C Opt+X Opt+V |
Copy Cut Paste |
| Opt+< Opt+> |
Move per words. |
| Opt+^ Opt+v |
Move per line. |
| Ctrl+L | Clear screen. |
| Ctrl+C | Terminate/Kill current foreground process. |
| Ctrl+Z | Suspend/Stop current foreground process. |
| Keys | Functions |
|---|---|
| ^ v |
Browse the history. |
| Ctrl+R | Research function. |
!! |
Retype the last command. |
!n |
Retype the n(numerical value) command from the begin of history. |
!-n |
Retype the -n(numerical value) command from the last command. |
!name |
Search for a command beginning with name. |
!?name |
Search for a command which contain name. |
Autocompletion works with binary, path and env variable. Output is colored upon type. Using arrows to navigate is supported. Autorefreshing with a new input from the user: modification of the list of possibility.
| Commands | Functions |
|---|---|
$> l[tab] |
Search for binary. |
$> ls s[tab] |
Search for path/files. |
$> $[tab] |
Search for variables in env. |
| Commands | Functions |
|---|---|
hash |
List the content of the hash table. |
hash -r |
Clear the memory of the hash table. |
| Commands | Functions |
|---|---|
jobs |
List all the current running jobs. |
fg |
Bring the most recent process to foreground. |
fg n |
Bring the specified jobs to foreground where n is the numerical value of the process found in jobs. |