LinuxCommandLibrary

eza

Modern, maintained replacement for `ls`, built on `exa`.

TLDR

List files one per line

$ eza --oneline
copy


List all files, including hidden files
$ eza --all
copy


Long format list (permissions, ownership, size and modification date) of all files
$ eza --long --all
copy


List files with the largest at the top
$ eza --reverse --sort=[size]
copy


Display a tree of files, three levels deep
$ eza --long --tree --level=[3]
copy


List files sorted by modification date (oldest first)
$ eza --long --sort=[modified]
copy


List files with their headers, icons, and Git statuses
$ eza --long --header --icons --git
copy


Don't list files mentioned in .gitignore
$ eza --git-ignore
copy

Copied to clipboard