Treeview folder structure
Elements
Treeview source |
Rendering |
---|---|
|
|
Notes
Linux
tree commandThe Either specify the output to be in ASCII: $ tree --noreport -a --dirsfirst --charset=ASCII <folder> Or replace the Unicode whitespace in the output: $ tree --noreport -a --dirsfirst <folder> | sed -e 's/\xC2\xA0/ /g' |