Created
March 11, 2025 08:14
-
-
Save kennwhite/6acab8c2984bf4d2b3dbb852fd3cff53 to your computer and use it in GitHub Desktop.
Install tree utility on MacOS without Brew
This file contains 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
#!/usr/bin/env bash | |
# | |
# Download tar file for "tree" here: https://oldmanprogrammer.net/source.php?dir=projects/tree | |
# Maintained here: https://github.com/Old-Man-Programmer/tree | |
# (No, really. It's 10+ years old, and updated as recently as Nov 25, 2024) | |
# | |
# I think this requires XCode pre-installed for gcc etc. | |
curl -LO https://github.com/Old-Man-Programmer/tree/archive/refs/heads/master.zip | |
unzip ./master.zip | |
cd tree-master | |
make | |
sudo cp ./tree /usr/local/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment