diff --git a/ebook/en/content/023-bash-redirection.md b/ebook/en/content/023-bash-redirection.md index 64783a6..fc4a94e 100644 --- a/ebook/en/content/023-bash-redirection.md +++ b/ebook/en/content/023-bash-redirection.md @@ -15,7 +15,7 @@ In Linux, there are 3 File Descriptors, **STDIN** (0); **STDOUT** (1) and **STDE 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. -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. +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 redirections specified. # Redirection in Bash