Skip to content

Commit 9d02b4d

Browse files
authored
fix a typo (#167)
1 parent d943206 commit 9d02b4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ebook/en/content/023-bash-redirection.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In Linux, there are 3 File Descriptors, **STDIN** (0); **STDOUT** (1) and **STDE
1313

1414
# Difference between Pipes and Redirections
1515

16-
Both *pipes* and *redidertions* redirect streams `(file descriptor)` of process being executed. The main difference is that *redirections* deal with `files stream`, sending the output stream to a file or sending the content of a given file to the input stream of the process.
16+
Both *pipes* and *redirections* redirect streams `(file descriptor)` of process being executed. The main difference is that *redirections* deal with `files stream`, sending the output stream to a file or sending the content of a given file to the input stream of the process.
1717

1818
On the other hand a pipe connects two commands by sending the output stream of the first one to the input stream of the second one. without any redidertions specified.
1919

0 commit comments

Comments
 (0)