Skip to content

Instantly share code, notes, and snippets.

@kennwhite
Created March 11, 2025 08:14
Show Gist options
  • Save kennwhite/6acab8c2984bf4d2b3dbb852fd3cff53 to your computer and use it in GitHub Desktop.
Save kennwhite/6acab8c2984bf4d2b3dbb852fd3cff53 to your computer and use it in GitHub Desktop.
Install tree utility on MacOS without Brew
#!/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