Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/alexandre10044/minishell_1

Epitech Project, minishell_1
https://github.com/alexandre10044/minishell_1

command epitech gnl interpreter library minishell unix

Last synced: about 2 months ago
JSON representation

Epitech Project, minishell_1

Lists

README

        

# minishell_1
Epitech Project, minishell_1

Subject:

You have to program a UNIX command interpreter.
The interpreter is expected to display a prompt ( $> , for example) and then wait for you to write a command
line, which must be validated by a newline.
The prompt must be displayed again only after the command execution.
Only basic command lines are expected to executed; no pipes, redirections or any other advanced features.
The executables should be those found in the path, as indicated in the PATH variable.
If the executable cannot be found, you must display an error message and display the prompt again.
Errors must be dealt with and must display the appropriate message on the error output.
You must correctly handle the PATH and the environment (by copying and restoring the initial env).
You must implement the following builtins: cd, setenv, unsetenv, env, exit.
Your env builtin hasn’t to take any argument. Your unsetenv builtin hasn’t to support the “*” wildcard.

Usage:

./mysh

Example

![alt text](https://raw.githubusercontent.com/alexandre10044/minishell_1/master/example.png)