Browse Source

feat(0-shell): add requirements to implement command flags asked in audit

pull/2409/head
nprimo 3 months ago committed by Niccolò Primo
parent
commit
fb3d6bbdb2
  1. 20
      subjects/0-shell/README.md

20
subjects/0-shell/README.md

@ -17,16 +17,16 @@ For this project you will only have to create a simple `Unix shell` where you ca
- The command lines are simple, you will not have pipes, redirection or any other advanced functions.
- You must manage the errors, by displaying a message adapted to the error output.
- You must implement the following commands:
- echo
- cd
- ls
- pwd
- cat
- cp
- rm
- mv
- mkdir
- exit
- `echo`
- `cd`
- `ls`, including the flags `-l`, `-a` and `-F`
- `pwd`
- `cat`
- `cp`
- `rm`, including the flag `-r`
- `mv`
- `mkdir`
- `exit`
> The commands need to be implemented from scratch. It is not allowed to execute external binaries.

Loading…
Cancel
Save