Skip to content

Commit 84c52ac

Browse files
authored
Fix typos in book/stdout_stderr_exit_codes.md (#835)
1 parent 82c3151 commit 84c52ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/stdout_stderr_exit_codes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ If we try to run the external `cat` on a file that doesn't exist, we can see wha
5656

5757
## Using `out>`, `err>` to redirect stdout and stderr to files
5858

59-
If you want to redirect output to file, you can just types something like this:
59+
If you want to redirect output to file, you can just type something like this:
6060

6161
```
6262
cat unknown.txt out> out.log err> err.log
6363
```
6464

65-
If you want to redirect both stdout and stderr to the same file, just types something like this:
65+
If you want to redirect both stdout and stderr to the same file, just type something like this:
6666

6767
```
6868
cat unknown.txt out+err> log.log

0 commit comments

Comments
 (0)