exa: add page (#1589)

coverage
Starbeamrainbowlabs 2017-11-03 23:02:18 +00:00 committed by GitHub
commit 9de0ee64f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 0 deletions

27
pages/common/exa.md Normal file
View 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 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}}`