1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/eza.md
Reed 9af4d7820e
eza: add page (#10714)
* eza: add page

* eza: update title

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* eza: update title

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2023-09-12 21:04:09 +05:30

36 lines
747 B
Markdown

# eza
> Modern, maintained replacement for `ls`, built on `exa`.
> More information: <https://github.com/eza-community/eza>.
- List files one per line:
`eza --oneline`
- List all files, including hidden files:
`eza --all`
- Long format list (permissions, ownership, size and modification date) of all files:
`eza --long --all`
- List files with the largest at the top:
`eza --reverse --sort={{size}}`
- Display a tree of files, three levels deep:
`eza --long --tree --level={{3}}`
- List files sorted by modification date (oldest first):
`eza --long --sort={{modified}}`
- List files with their headers, icons, and Git statuses:
`eza --long --header --icons --git`
- Don't list files mentioned in `.gitignore`:
`eza --git-ignore`