mirror of
https://github.com/trinib/Linux-Bash-Commands.git
synced 2025-04-11 18:29:13 -04:00
Update README.md
This commit is contained in:
parent
40921432fb
commit
ae7eb3d293
16
README.md
16
README.md
@ -3988,7 +3988,11 @@ Inspired by <a href="https://github.com/RehanSaeed/Bash-Cheat-Sheet">RehanSaeed/
|
||||
</tr>
|
||||
<tr>
|
||||
<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>
|
||||
<td class="tg-yw4l">||</td>
|
||||
@ -4004,7 +4008,7 @@ Inspired by <a href="https://github.com/RehanSaeed/Bash-Cheat-Sheet">RehanSaeed/
|
||||
<tr>
|
||||
<tr>
|
||||
<td class="tg-yw4l">&</td>
|
||||
<td class="tg-yw4l">Run job in background[and]. A command followed by an & will run in the background.</td>
|
||||
<td class="tg-yw4l">Run job in background [and]. A command followed by an & will run in the background.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-yw4l">#</td>
|
||||
@ -4012,8 +4016,12 @@ Inspired by <a href="https://github.com/RehanSaeed/Bash-Cheat-Sheet">RehanSaeed/
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<td class="tg-yw4l"> >, >>, < </td>
|
||||
<td class="tg-yw4l">Redirect a command's output or input into a file.</td>
|
||||
<td class="tg-yw4l"> >, >>, <</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>
|
||||
<td class="tg-yw4l">>|</td>
|
||||
|
Loading…
x
Reference in New Issue
Block a user