File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed
Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ Your task is to implement your own version of `cat`.
66
77It 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
1515Matching any additional behaviours or flags are optional stretch goals.
1616
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ Your task is to implement your own version of `ls`.
66
77It 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
1313Matching any additional behaviours or flags are optional stretch goals.
1414
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ Your task is to implement your own version of `wc`.
66
77It 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
1515Matching any additional behaviours or flags are optional stretch goals.
1616
You can’t perform that action at this time.
0 commit comments