Skip to content

Commit ed2f627

Browse files
x0rzaviwaciumawanjohi
authored andcommitted
fix typos
1 parent b25b53a commit ed2f627

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

coursepages/ostep/Project-2A-processes-shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* All of the test scripts will use batch mode and redirection, so until you've got those done, you'll have to test your shell manually.
1818
* When you implement the `path` command, make sure you can handle both absolute and relative paths (i.e., `path tests` as well as `path /usr/bin`.
1919
* It's tricky to get the errors down right, so just add error messages wherever it seems reasonable, then run the test scripts and modify your code until you're reporting errors exactly when you're supposed to. If you're running test `i`, you can check `tests/i.err` and `tests/i.rc` to see how many errors your shell should generate and compare to `tests-out/i.err` and `tests-out/i.rc`.
20-
* If you run into issues with test 3 where the test expects something like `ls: cannot access ...` and your shell ouputs `/bin/ls: cannot access ...` or `/usr/bin/ls: cannot access ...`, try modifying your $PATH environment variable to start with `/bin`. If that doesn't work, just modify `tests/3.err` to match the output your system gives. You can't modify your system's output without messing with the implementation of `ls` and/or `execv`, so it's okay to skip this test as long as it's working in spirit.
20+
* If you run into issues with test 3 where the test expects something like `ls: cannot access ...` and your shell outputs `/bin/ls: cannot access ...` or `/usr/bin/ls: cannot access ...`, try modifying your $PATH environment variable to start with `/bin`. If that doesn't work, just modify `tests/3.err` to match the output your system gives. You can't modify your system's output without messing with the implementation of `ls` and/or `execv`, so it's okay to skip this test as long as it's working in spirit.
2121
* I had to edit `/tests/3.pre` to use `/bin/ls` due to how it's set up on my system, in order to pass all the tests. Alternatively you can add `export PATH="/bin:$PATH"` to your `.profile` or `.bashrc` file.
2222

2323
### Memory Management Traps and Pitfalls

coursepages/ostep/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ This course was originally taught as CS 537 at the University of Wisconsin by th
7777
* Watch discussion 5, then do the `scheduling-xv6-lottery` project.
7878
* Watch discussion 7, then do the `vm-xv6-intro` project.
7979
* Watch lectures 6 through 9 (and optionally, the review lecture) and read chapters 25 through 34; again, you're encouraged to do the homework.
80-
* Watch discussion 10, then do the `concurency-xv6-threads` project.
80+
* Watch discussion 10, then do the `concurrency-xv6-threads` project.
8181
* Watch discussions 11 and 12, then do the `concurrency-mapreduce` project.
8282
* Watch lectures 10 through 14 (and optionally, the second review lecture) and read chapters 35 through 47; remember to do the homework along with the lectures or chapters.
8383
* Do the `filesystems-checker` project.

0 commit comments

Comments
 (0)