tldr/pages/common/exa.md
Agniva De Sarker 3c66fc488e
exa: update page
- Added tokens around parameters
- Put backticks around ls
- Simplified some descriptions.
2017-10-29 00:02:54 +05:30

524 B

exa

A modern replacement for ls (List directory contents).

  • List files one per line:

exa --oneline

  • List all files, including hidden files:

exa --all

  • Long format list (permissions, ownership, size and modification date) of all files:

exa --long --all

  • List files with the largest at the top:

exa --reverse --sort={{size}}

  • Display a tree of files, three levels deep:

exa --long --tree --level={{3}}

  • List files sorted by modification date (oldest first):

exa --long --sort={{modified}}