From 72ded52b76b21b85eedce12828fb2b416e0169c9 Mon Sep 17 00:00:00 2001 From: Austin Songer Date: Tue, 21 Jan 2020 21:42:42 +0000 Subject: [PATCH] ANSWERED: What this line in scripts mean? #!/bin/bash --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 684a45e..b006ee0 100644 --- a/README.md +++ b/README.md @@ -4698,10 +4698,19 @@ as key-value pair, document-oriented, etc.
Tell me about your experience with shell scripting
+
What this line in scripts mean?: #!/bin/bash
+ + +`#!/bin/bash` is She-bang + +/bin/bash is the most common shell used as default shell for user login of the linux system. The shell’s name is an acronym for Bourne-again shell. Bash can execute the vast majority of scripts and thus is widely used because it has more features, is well developed and better syntax. + + +