Created
January 14, 2014 23:53
-
-
Save maxclaus/8428298 to your computer and use it in GitHub Desktop.
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
# Add this to you ~/.profile | |
function tree { | |
find ${1:-.} -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' | |
} | |
# Then: | |
$ source ~/.profile | |
$ tree | |
$ tree . | |
$ tree [some-folder-path] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment