eolas/neuron/674ca64c-a00f-4fd4-88ed-0d1856b37688/Proper_shebang_syntax.md
2024-11-12 08:09:20 +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