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. + + +