Skip to content
This repository has been archived by the owner on Jun 19, 2023. It is now read-only.

[Final Grade: A] Unix project from computer science School

Notifications You must be signed in to change notification settings

simonprovost/UnixProgramming

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Epitech Computer Science School



Grade Obtained

  • Grade A

National Ranking

  • Third best project in the whole country.

UnixProgramming

Unix project from computer science School

Table of Contents

  • UnixProgramming: C and Unix Basics
    • Minishell1: First Shell.
    • MinishelL2: Second Shell.
    • 42sh: Third advanced Shell.

UnixProgramming: C and Unix Basis

Back to top

  • Minishell1: Reproduce a simple shell

    • Description: 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.
  • Minishell2: Reproduce a shell

    • Description: You have to program a UNIX command interpreter same as the first project but with extra. The goal of the project is to enrich your minishell1 project by adding semicolons (‘;’), pipes (‘|’), and the four redirections (‘>’, ‘<’, ‘>>’, ‘<<’) management. Here is a simple example of a command you must hanlde: mkdir test ; cd test ; ls -a ; ls | cat | wc -c > tutu ; cat tutu
  • 42sh: Reproduce an advanced shell

    • Description: You must write a Unix SHELL. The project consists of two sections: • a mandatory section, which MUST be completed: display a prompt, parse and execute some commands (see below), • an optional section, which will only be evaluated if the mandatory section is fully functionnal. Authorized functions: all functions included in the libC or the ncurses library.

    • Mandatory: • spaces and tabs, • $PATH and environment, • errors and return value, • redirections (‘<’, ‘>’, ‘<<’ and ‘>>’), • pipes (‘|’), • builtins: cd, echo, exit, setenv, unsetenv, • separators: ‘;’, ‘&&’, ‘||’

    • Optional: • inhibitors (‘\’), • globbings (‘*’, ‘?’, ‘[’, ’]’), • job control (‘&’, fg), • backticks (“’), • parentheses (‘(’ and ‘)’), • variables (local and env), • special variables (term, precmd, cwdcmd, cwd, ignoreof for instance), • history (‘!’), • aliases, • line edition (multiline, dynamic rebinding, auto-completion dynamic, • scripting (a bit harsh though).