Skip to content

Instantly share code, notes, and snippets.

@NathanaelGandhi
NathanaelGandhi / bash-template.sh
Last active June 8, 2023 23:31
help functionality for shell scripts
#!/bin/bash -eu
# author: Nathanael Gandhi
# github.com/NathanaelGandhi
################################################################################
# Source required functions #
################################################################################
bash_utils_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)/bash_utils"
mkdir -p "$bash_utils_dir"
echo " • Sourcing required functions"