From 3b7fc94f0854f244a3cbcf4a2d8bf383837c73d3 Mon Sep 17 00:00:00 2001 From: Benjamyn Love Date: Mon, 25 Feb 2019 23:39:03 +1100 Subject: [PATCH] Swapped table format to code as it works better with the theme --- docs/Linux/shellbasics.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) 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