Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# @author: Demetrius Ford
# @date: 19 Oct 2025
set -euo pipefail
info() {
echo "==> ${*}"
}
#!/bin/bash
# @author: Demetrius Ford
# @date: 19 Oct 2025
set -euo pipefail
install_bash() {
echo "Installing Bash using Homebrew..."
brew upgrade && brew install bash
}