What is the purpose of #!/bin/bash at the beginning of a script?
#!/bin/bash
It is only a descriptive comment with no execution role.
It grants executable file permission.
It tells the system to use Bash as the script's interpreter when the file is executed.
It exports every variable in the script automatically.