Skip to content

Instantly share code, notes, and snippets.

@funkytaco
Created February 22, 2015 20:36
Show Gist options
  • Select an option

  • Save funkytaco/448a95e4ae797e0b8548 to your computer and use it in GitHub Desktop.

Select an option

Save funkytaco/448a95e4ae797e0b8548 to your computer and use it in GitHub Desktop.
tree function
if [ -z "\${which tree}" ]; then
tree () {
find $@ -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'
}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment