7 examples for tree
# Shows absolute filenames of all files in current directory and subdirectories.
tree -i -f .
# Execlude files pattern separated by a vertical bar. (do not include trailing slash for folders)
tree -I "node_modules|bin"