diff --git a/docs/Linux/shellbasics.md b/docs/Linux/shellbasics.md index 0e497e6..556a118 100644 --- a/docs/Linux/shellbasics.md +++ b/docs/Linux/shellbasics.md @@ -10,17 +10,11 @@ The linux shell (this will usually be [`bash`](/Linux/bash.md)) works using diff The main three streams that are used on the command line are STDIN (Standard input), STDOUT (Standard output), STDERR (Standard Error) -|STREAM ID \| | STREAM NAME \| | STREAM USE| -|------------|------|-----| -| 0 | STDIN | Used to send input to the program | -| 1 | STDOUT | Used to receive output from the program | -| 2 | STDERR | Used to receive errors from the program | - ```bash STREAM ID STREAM NAME STREAM USE -0 STDIN Used to send input to the program -1 STDOUT Used to receive output from the program -2 STDERR Used to receive errors from the program +0 STDIN Used to send input to the program +1 STDOUT Used to receive output from the program +2 STDERR Used to receive errors from the program ``` ### Standard Input