Skip to content

Commit d2dd004

Browse files
authored
Typo (#170)
1 parent 85e9220 commit d2dd004

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
@@ -15,7 +15,7 @@ In Linux, there are 3 File Descriptors, **STDIN** (0); **STDOUT** (1) and **STDE
1515

1616
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

18-
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.
18+
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.
1919

2020
# Redirection in Bash
2121

0 commit comments

Comments
 (0)