mirror of
https://github.com/trinib/Linux-Bash-Commands.git
synced 2025-08-09 07:22:17 -04:00
Update README.md
This commit is contained in:
parent
40921432fb
commit
ae7eb3d293
1 changed files with 12 additions and 4 deletions
12
README.md
12
README.md
|
@ -3988,7 +3988,11 @@ Inspired by <a href="https://github.com/RehanSaeed/Bash-Cheat-Sheet">RehanSaeed/
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="tg-yw4l">│</td>
|
<td class="tg-yw4l">│</td>
|
||||||
<td class="tg-yw4l">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.</td>
|
<td class="tg-yw4l">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.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="tg-yw4l">|&</td>
|
||||||
|
<td class="tg-yw4l">This operator connects the output (stdout) and error (stderr) of command1 to the input (stdin) of command2.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="tg-yw4l">||</td>
|
<td class="tg-yw4l">||</td>
|
||||||
|
@ -4013,7 +4017,11 @@ Inspired by <a href="https://github.com/RehanSaeed/Bash-Cheat-Sheet">RehanSaeed/
|
||||||
<tr>
|
<tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="tg-yw4l"> >, >>, <</td>
|
<td class="tg-yw4l"> >, >>, <</td>
|
||||||
<td class="tg-yw4l">Redirect a command's output or input into a file.</td>
|
<td class="tg-yw4l">Redirect a command's output (stdout) or input (stdin) into a file.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="tg-yw4l">&>, >&</td>
|
||||||
|
<td class="tg-yw4l">Redirects a command's both output (stdout) and error (stderr) into a file.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="tg-yw4l">>|</td>
|
<td class="tg-yw4l">>|</td>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue