You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pipes | the output of each command in the pipeline is connected via a pipe to theinput of the next command.
Environment variables ($ followed by characters) expand to their values.
$? expands to the exit status of the most recently executed foreground pipeline.
Signals work like in bash. When interactive:
Ctrl + C will print a new prompt on a newline.
Ctrl + D will exit the shell.
Ctrl + \ will do nothing.
About
[minishell] project school 42. The goal of this project is to create a simple shell. You are going to learn a lot about processes and file descriptors.