ANSWERED: What this line in scripts mean? #!/bin/bash

This commit is contained in:
Austin Songer 2020-01-21 21:42:42 +00:00
parent 1e006671d9
commit 72ded52b76

View File

@ -4698,10 +4698,19 @@ as key-value pair, document-oriented, etc.
<details>
<summary>Tell me about your experience with shell scripting</summary><br><b>
</b></details>
<details>
<summary>What this line in scripts mean?: <code>#!/bin/bash</code></summary><br><b>
`#!/bin/bash` is She-bang
/bin/bash is the most common shell used as default shell for user login of the linux system. The shells 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.
</b></details>
<details>