This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# @author: Demetrius Ford | |
# @date: 19 Oct 2025 | |
set -euo pipefail | |
info() { | |
echo "==> ${*}" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# @author: Demetrius Ford | |
# @date: 19 Oct 2025 | |
set -euo pipefail | |
install_bash() { | |
echo "Installing Bash using Homebrew..." | |
brew upgrade && brew install bash | |
} |