diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-07-19 16:07:08 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-07-19 16:07:08 +0200 |
| commit | ed45800a6ad9d4cfbd73832d53e4e26bb7645054 (patch) | |
| tree | d4691054bba3a7f022eaef0c33763e8322477f7f /README.md | |
| parent | 6e97753fa7307cfc0a2ea426edaac6c683e916f7 (diff) | |
| download | minishell-ed45800a6ad9d4cfbd73832d53e4e26bb7645054.tar.gz minishell-ed45800a6ad9d4cfbd73832d53e4e26bb7645054.tar.bz2 minishell-ed45800a6ad9d4cfbd73832d53e4e26bb7645054.zip | |
Fixing cd error messages, Fixing glob on links
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -# minishell [](https://travis-ci.com/HappyTramp/minishell) +# minishell minishell project of school 42 @@ -17,16 +17,16 @@ You can then read the man pages in ./doc/man or open ./doc/html/index.html in yo ### Mandatory -- [ ] Show a prompt when waiting for a new command +- [x] Show a prompt when waiting for a new command - [x] Search and launch the right executable (based on the *PATH* variable or by using relative or absolute path) like in bash - [ ] It must implement the builtins like in bash: - [x] `echo` with option `-n` - [ ] `cd` without `-` option - [ ] `pwd` without any options - - [ ] `export` without any options - - [ ] `unset` without any options + - [x] `export` without any options + - [x] `unset` without any options - [ ] `env` without any options and any arguments - - [ ] `exit` without any options + - [x] `exit` without any options - [x] `;` in the command should separate commands like in bash - [x] `'` and `"` should work like in bash except for multiline commands - [ ] Redirections `<` `>` `>>` should work like in bash except for file descriptor aggregation |
