Skip to content

Commit

Permalink
fix a typo (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
grogy authored Oct 14, 2024
1 parent d943206 commit 9d02b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ebook/en/content/023-bash-redirection.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In Linux, there are 3 File Descriptors, **STDIN** (0); **STDOUT** (1) and **STDE

# Difference between Pipes and Redirections

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.
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.

Expand Down

0 comments on commit 9d02b4d

Please sign in to comment.