Skip to content

Commit c6dce9d

Browse files
committed
fix: restore README files
1 parent 17e7856 commit c6dce9d

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

implement-shell-tools/cat/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Your task is to implement your own version of `cat`.
66

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

9-
- `cat sample-files/1.txt`
10-
- `cat -n sample-files/1.txt`
11-
- `cat sample-files/*.txt`
12-
- `cat -n sample-files/*.txt`
13-
- `cat -b sample-files/3.txt`
9+
* `cat sample-files/1.txt`
10+
* `cat -n sample-files/1.txt`
11+
* `cat sample-files/*.txt`
12+
* `cat -n sample-files/*.txt`
13+
* `cat -b sample-files/3.txt`
1414

1515
Matching any additional behaviours or flags are optional stretch goals.
1616

implement-shell-tools/ls/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Your task is to implement your own version of `ls`.
66

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

9-
- `ls -1`
10-
- `ls -1 sample-files`
11-
- `ls -1 -a sample-files`
9+
* `ls -1`
10+
* `ls -1 sample-files`
11+
* `ls -1 -a sample-files`
1212

1313
Matching any additional behaviours or flags are optional stretch goals.
1414

implement-shell-tools/wc/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Your task is to implement your own version of `wc`.
66

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

9-
- `wc sample-files/*`
10-
- `wc -l sample-files/3.txt`
11-
- `wc -w sample-files/3.txt`
12-
- `wc -c sample-files/3.txt`
13-
- `wc -l sample-files/*`
9+
* `wc sample-files/*`
10+
* `wc -l sample-files/3.txt`
11+
* `wc -w sample-files/3.txt`
12+
* `wc -c sample-files/3.txt`
13+
* `wc -l sample-files/*`
1414

1515
Matching any additional behaviours or flags are optional stretch goals.
1616

0 commit comments

Comments
 (0)