Skip to content

Instantly share code, notes, and snippets.

@choiceforyou
Created January 22, 2015 22:27
Show Gist options
  • Save choiceforyou/77a84bf03fefffcb4998 to your computer and use it in GitHub Desktop.
Save choiceforyou/77a84bf03fefffcb4998 to your computer and use it in GitHub Desktop.
Hack of Linux Tree 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