simple_shell icon indicating copy to clipboard operation
simple_shell copied to clipboard

:shell: Command line interpreter for Unix-like operating systems

Results 5 simple_shell issues
Sort by recently updated
recently updated
newest added

- [x] Write your own getline function - [ ] Use a buffer to read many chars at once and call the least possible the read system call - [...

- [x] Implement the history built-in, without any argument - [x] The history built-in displays the history list, one command by line, preceded with line numbers (starting at 0) -...

- [ ] Implement the alias builtin command - [x] Usage: alias [name[='value'] ...] - [x] alias: Prints a list of all aliases, one per line, in the form name='value'...

- [ ] Usage: simple_shell [filename] - [ ] Your shell can take a file as a command line argument - [ ] The file contains all the commands that...

- [ ] Implement the help built-in - [ ] Usage: help [BUILTIN]