The first line of every script should begin with the “shebang”. This indicates which interpreter should be used with the following code.
#!/bin/bash
#! directs the program loader to load an interpreter for the code in the file./bin/bash the Bash interpreter's location.