Zet - What’s a good alternative to tree if it’s not installed?
What’s a good alternative to tree if it’s not installed?
You can use find with a bit of magic
find . -print | sed -e "s;[^/]*/;|____;g;s;____|; |;g"
#bash