A modern, vibrant, and multi-threaded file-tree visualizer and disk usage analyzer that respects hidden files and .gitignore
rules by default - basically if tree and du had a baby.
erdtree is a modern alternative to tree
and du
in that it:
- offers a minimal and user-friendly CLI
- respects hidden files and .gitignore
rules by default
- displays file sizes in human-readable format by default
- leverages parallism to traverse the file-system
- displays files using ANSI colors by default
- supports icons! (checkout the Icons section before using)
``` erdtree (et) is a multi-threaded filetree visualizer and disk usage analyzer.
Usage: et [OPTIONS] [DIR]
Arguments: [DIR] Root directory to traverse; defaults to current working directory
Options:
-d, --disk-usage
$ cargo install erdtree
Binaries for common architectures can be downloaded from latest releases.
Other means of installation to come.
Disk usage is reported using binary prefixes, thus you can expect 1 kebibyte
to equal 1024 bytes
(i.e 1 KiB = 1024 B
).
Logical sizes are reported by default but you can toggle the reporting to physical sizes which takes into account compression, sparse files, and actual blocks allocated to a particular file via the following option:
-d, --disk-usage <DISK_USAGE> Print physical or logical file size [default: logical] [possible values: logical, physical]
.gitignore
, and files excluded via globbing will be ommitted from the disk usages of their parent directories.-S, --follow-links
, the disk usages of their target will not be reported nor considered.
Files are printed in ANSI colors specified according to the LS_COLORS
environment variable on GNU/Linux systems. In its absence a default value is used.
Note for MacOS: MacOS uses the LSCOLORS
environment variable to determine file colors for the ls
command which is formatted very differently from LS_COLORS
. MacOS systems will fall back on the aforementioned default value unless the user defines their own LS_COLORS
environment variable.
Icons (enabled with I, --icons
) are an opt-in feature because for icons to render properly it is required that the font you have hooked up to your terminal emulator contains the glyphs necessary to properly render icons.
If your icons look something like this:
this means that the font you are using doesn't include the relevant glyphs. To resolve this issue download a NerdFont and hook it up to your terminal emulator.
tree
commandThis is not a rewrite of the tree
command thus it should not be considered a 1-to-1 port. While the spirit of tree
is maintained erdtree
there are more differences than there are similarities.
exa --tree
Exa is a powerful modern equivalent of the ls
command which gives the option to print a tree-view of a specified directory, however the primary differences between exa --tree
and et
are:
- exa --tree --git-ignore
doesn't respect .gitignore
rules on a per directory basis whereas et
does. With exa
the root's .gitignore
is considered, but if child directories have their own .gitignore
they are disregarded and all of their contents will be printed.
- et
displays the total size of a directory as the sum of all of its entries' sizes whereas exa
does not support this. This makes sorting directories in the tree-view by size dubious and unclear. Below are screenshots comparing equivalent usages of et
and exa
, using long option names for clarity.
dua is a fantastic interactive disk usage analyzer that serves as a modern alternative to ncdu. If you're in the mood for something interactive, dua
might suit you more. If you'd rather do a quick analysis of your file-tree and disk-usage without spinning up an entire terminal UI then go with erdtree
.
dust is another fantastic tool that heavily overlaps with erdtree
in functionality. The biggest differences between the two:
- erdtree
defaults to respecting hidden file and .gitignore
rules.
- dust
only shows a limited set of files in the file-tree by default, but also defaults to showing the largest files first.
- erdtree
keeps the spirit of tree
with respect to the output while dust
has a horizontal bar graph.
I haven't used dust
substantially so these are the immediate differences I came across. Try dust
and erdtree
and see which best suits you.
Happy to accept contributions but please keep the following in mind: - If you're doing some minor refactoring and/or code cleanup feel free to just submit a PR. - If you'd like to add a feature please open up an issue and receive approval first unless you've previously contributed. - Feature adds generally require tests.
Feature requests in the form of issues in general are welcome.
/u/johnm
for suggesting that different binary prefixes be colored differently for better visual feedback./u/Freeky
for suggestions on how to handle hardlinks and physical disk sizes./u/lucca_huguet
(can be found as luccahuguet on Github) for suggesting that the compiled erdtree
binary be shorted to et
.erdtree
with their very valuable feedback.Q: Why did you make this? It's totally unnecessary.
A: Ennui.
_Q: Is it any good?
A: Don't ask me, ask this dude/dudette:
and this dude/dudette:
Q: Why is it called erdtree?
A: It's a reference to Elden Ring.
Q: Is it any good?
A: Yes.
Q: Is it blazingly fast?
A: Should be. I wrote it in Rust.