From ae7eb3d293c6a3812fe912f0cfc0fadf132851ea Mon Sep 17 00:00:00 2001 From: trinib Date: Wed, 9 Nov 2022 18:57:23 -0400 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8b43e17..c419c96 100644 --- a/README.md +++ b/README.md @@ -3988,7 +3988,11 @@ Inspired by RehanSaeed/ │ -Pipe. It passes the output (stdout) of a previous command to the input (stdin) of the next one, or to the shell. This is a method of chaining commands together. +Pipe. This is a method of chaining commands together. Connects the output (stdout) of command1 to the input (stdin) of command2. Each command reads the previous command’s output. + + +|& +This operator connects the output (stdout) and error (stderr) of command1 to the input (stdin) of command2. || @@ -4004,7 +4008,7 @@ Inspired by RehanSaeed/ & -Run job in background[and]. A command followed by an & will run in the background. +Run job in background [and]. A command followed by an & will run in the background. # @@ -4012,8 +4016,12 @@ Inspired by RehanSaeed/ - >, >>, < -Redirect a command's output or input into a file. + >, >>, < +Redirect a command's output (stdout) or input (stdin) into a file. + + +&>, >& +Redirects a command's both output (stdout) and error (stderr) into a file. >|