and again...

This commit is contained in:
hugogogo
2021-10-14 00:58:38 +02:00
parent fd49088085
commit d545c5cc51

View File

@@ -2,17 +2,17 @@
- **builtins :** - **builtins :**
- ~~`echo`~~ - ~~`echo`~~
- echo -n - `echo -n`
- cd <relative path> - `cd <relative path>`
- cd <absolute path> - `cd <absolute path>`
- pwd - `pwd`
- export - `export`
- unset - `unset`
- env - `env`
- ~~exit~~ - ~~`exit`~~
- `'` *(ignore any special characters)* --> [ressource](https://linuxhandbook.com/quotes-in-bash/) - `'` *(ignore any special characters)* --> [ressource](https://linuxhandbook.com/quotes-in-bash/)
- `"` *(ignore any special characters except '$')* - `"` *(ignore any special characters except '$')*
- unclosed quotes ? - `unclosed quotes`
- **redirection :** - **redirection :**
- `>` *input* - `>` *input*
- `>` *output* - `>` *output*
@@ -25,7 +25,7 @@
- `^C` *close process* - `^C` *close process*
- `^D` *exit minishell* - `^D` *exit minishell*
- `^\` *do nothing* - `^\` *do nothing*
- history - `history`
--> [source of a minishell with an interesting README](https://git.42l.fr/Fabien/minishell) --> [source of a minishell with an interesting README](https://git.42l.fr/Fabien/minishell)