Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions implement-shell-tools/ls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Your task is to implement your own version of `ls`.

It must act the same as `ls` would, if run from the directory containing this README.md file, for the following command lines:

* `ls sample-files`
* `ls sample-files/1.txt`
* `ls sample-files/*`
* `ls -1`
* `ls -1 sample-files`
* `ls -1 -a sample-files`
Expand Down
2 changes: 2 additions & 0 deletions implement-shell-tools/wc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ It must act the same as `wc` would, if run from the directory containing this RE
* `wc -w sample-files/3.txt`
* `wc -c sample-files/3.txt`
* `wc -l sample-files/*`
* `wc -w -l sample-files/3.txt`
* `wc -w -l sample-files/*`

Matching any additional behaviours or flags are optional stretch goals.

Expand Down