Skip to content

Instantly share code, notes, and snippets.

@fcaldarelli
Created December 17, 2016 10:12
Show Gist options
  • Save fcaldarelli/f2c7de11cfbce6f2e14143b274dd482e to your computer and use it in GitHub Desktop.
Save fcaldarelli/f2c7de11cfbce6f2e14143b274dd482e to your computer and use it in GitHub Desktop.
/usr/local/bin/tree console command for mac
#!/bin/bash
SEDMAGIC='s;[^/]*/;|____;g;s;____|; |;g'
if [ "$#" -gt 0 ] ; then
dirlist="$@"
else
dirlist="."
fi
for x in $dirlist; do
find "$x" -print | sed -e "$SEDMAGIC"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment