eolas/neuron/7aecd932-b02d-45ea-9d19-2a719b326be7/Proper_shebang_syntax.md
2024-12-01 19:45:56 +00:00

233 B

tags
shell

Proper shebang syntax

This is a more portable way of writing the shebang because the location of Bash on different systems can vary.

#!/usr/bin/env Bash

Rather than:

#!/bin/bash