Swapped table format to code as it works better with the theme

This commit is contained in:
Benjamyn Love 2019-02-25 23:39:03 +11:00
parent 6891ec1e2c
commit 3b7fc94f08

View File

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