From 142cbd884af0906b8533d1f30f9a75977762dc26 Mon Sep 17 00:00:00 2001 From: "Pujan A. Vakharia" Date: Fri, 21 Dec 2018 18:27:18 +0530 Subject: [PATCH] Update index.md (#26220) Line 7 : ... successor 'to' instead of 'for' Line 9 : addition of word 'using' for better grammar. Line 18 : Grammatical fix 'in' instead of 'on' --- guide/english/bash/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/bash/index.md b/guide/english/bash/index.md index dbcdbd9ce5..9872137e80 100644 --- a/guide/english/bash/index.md +++ b/guide/english/bash/index.md @@ -4,7 +4,7 @@ title: Bash ## What is Bash? -Bash (short for Bourne Again SHell) is a Unix shell, and a command language interpreter. A shell is simply a macro processor that executes commands. It's the most widely used shell packaged by default for most Linux distributions, and a successor for the Korn shell (ksh) and the C shell (csh). +Bash (short for Bourne Again SHell) is a Unix shell, and a command language interpreter. A shell is simply a macro processor that executes commands. It's the most widely used shell packaged by default for most Linux distributions, and a successor to the Korn shell (ksh) and the C shell (csh). Many of the things that can be done in Linux via the graphical interface (GUI) can be done via command line. Some examples are: @@ -17,7 +17,7 @@ Many of the things that can be done in Linux via the graphical interface (GUI) c You can read more about bash here, via the GNU Documentation, and via the tldp guide. -## Using bash on the command line (Linux, OS X) +## Using bash in the command line (Linux, OS X) You can start using bash on most Linux and OS X operating systems by opening up a terminal. Let's consider a simple hello world example. Open up your terminal, and write the following line (everything after the $ sign):