diff --git a/guide/english/linux/writing-a-bash-script/index.md b/guide/english/linux/writing-a-bash-script/index.md index a54d7f9150..2246470413 100644 --- a/guide/english/linux/writing-a-bash-script/index.md +++ b/guide/english/linux/writing-a-bash-script/index.md @@ -9,10 +9,10 @@ you add logic like `if` and `while` to automatically control how they behave as ## What’s Bash? Bash is the name of a command line interpreter, a program that makes sense of the Linux commands you enter at the command -prompt, or in your script. +prompt, or in your script. There are other interpreters as well, such us TC-Shell, Z Shell, Fish-Shell, and many more. ## What’s in a Script? -A script is just a file. A basic script is made up of an introductory line that tells the server what to make of it, and one +A script is just a file. A basic script is made up of an introductory line, called a "shebang", that tells the server what to make of it, and one or more instructions to execute. Here’s an example: ```