23 Feb 2025
tree only directories, exclude node_modules, dist, and build, and limit the depth to 5 levels
tree -d -I "node_modules|dist|build" -L 5
Explanation:
-d
: Show only directories.-I "node_modules|dist|build"
: Ignore specified directories.-L 5
: Limit the depth to 5 levels.
You may also like
5 Reasons Why Linux is the Best Operating System for Programming
Linux is a reliable, customizable operating system that is popular a...
Continue reading