From 4d3a705c7304f805e042f76070c28ca3b44cb324 Mon Sep 17 00:00:00 2001 From: PatrickRJadwin <38968025+PatrickRJadwin@users.noreply.github.com> Date: Sat, 27 Oct 2018 23:10:45 -0400 Subject: [PATCH] Specified what a shebang is and added alt shells (#20169) specified alternative shells users might see in the wild and specified what a shebang is --- guide/english/linux/writing-a-bash-script/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: ```