script bash para gerar a estrutura em árvore de um diretório

Treegen

#!/usr/bin/env bash

# bash script to generate tree structure of a directory
# Pravendra Singh : https://pravj.github.io

pwd
=$(pwd)
find $pwd
-print | sed -e "s;$pwd;.;g;s;[^/]*/;|__;g;s;__|; |;g"

Como usar

Baixar

# basically adding this file to your $PATH in executable mode

cd
/usr/bin
wget http
://git.io/vEYZ9A && cp vEYZ9A treegen && chmod 755 treegen

Comece a usar

execute o treegencomando em qualquer diretório e ele irá gerar a estrutura em árvore do diretório.

Veja em gist.github.com

https://gist.github.com/pravj/d39fb4149638c183b922