#!/usr/bin/env bash
shebang for bash scripts (more info).
chmod +x <script>
to mark a file as executable. Then it can be run without specifying an interpreter: ./<script>
.
#!/usr/bin/env bash
shebang for bash scripts (more info).
chmod +x <script>
to mark a file as executable. Then it can be run without specifying an interpreter: ./<script>
.