Example:

Want only large files? Pipe to grep: tree -h --du | grep "M\|G"

Type: tree -h --du – boom. You see every folder and file with sizes in KB, MB, GB.

Open your terminal. Ever run du -sh and gotten confused? Or ls -la and lost track?

alias tfs='tree -h --du' alias tfs-large='tree -h --du -L 2 | grep -E "\[.*M\]"' 🧠 Disk space mystery? Try treefilesize – a visual tree of your folders with file sizes attached. No more guessing where all your storage went.