mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 15:33:50 +02:00
exa: add page
This commit is contained in:
parent
aa405d2f20
commit
1d019e8200
1 changed files with 27 additions and 0 deletions
27
pages/common/exa.md
Normal file
27
pages/common/exa.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
# 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 of 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 of files, sorted by modification date (oldest first):
|
||||
|
||||
`exa --long --sort=modified`
|
Loading…
Add table
Reference in a new issue