Skip to content

Instantly share code, notes, and snippets.

@lovellfelix
Created August 24, 2018 18:05
Show Gist options
  • Save lovellfelix/4553077faaf0e5e1d7c676556c26fe64 to your computer and use it in GitHub Desktop.
Save lovellfelix/4553077faaf0e5e1d7c676556c26fe64 to your computer and use it in GitHub Desktop.
Print directory Tree
#!/bin/bash
#
#
#
#
ls -R `pwd` | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment