Beginner Linux & Shell Scripting
Q11 / 100

What does the shebang line "#!/bin/bash" at the top of a script indicate?

Correct! Well done.

Incorrect.

The correct answer is B) It specifies which interpreter should be used to execute the script

B

Correct Answer

It specifies which interpreter should be used to execute the script

Explanation

The shebang line tells the operating system which interpreter (here, /bin/bash) to use when running the script, allowing it to be executed directly without specifying the interpreter manually.

Progress
11/100