Skip to content

Commit

Permalink
feat(0-shell): add requirements to implement command flags asked in a…
Browse files Browse the repository at this point in the history
…udit
  • Loading branch information
nprimo committed Jan 25, 2024
1 parent 7461cb0 commit fb3d6bb
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions subjects/0-shell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit fb3d6bb

Please sign in to comment.