1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 10:15:25 +02:00
tldr/pages/common/exa.md
Nelson Figueroa 4eb2c0ca94
exa: update outdated translations (#16887)
* exa: update outdated translations

* Update pages.de/common/exa.md

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

* Update pages.es/common/exa.md

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

* Update pages.fr/common/exa.md

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

* Update pages.it/common/exa.md

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

* Update pages.ko/common/exa.md

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

* Update pages.pl/common/exa.md

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

* updating command in english page

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2025-06-18 13:05:50 -07:00

877 B

exa

A modern replacement for ls (List directory contents). More information: https://github.com/ogham/exa#command-line-options.

  • List files one per line:

exa {{[-1|--oneline]}}

  • List all files, including hidden files:

exa {{[-a|--all]}}

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

exa {{[-l|--long]}} {{[-a|--all]}}

  • List files with the largest at the top:

exa {{[-r|--reverse]}} {{[-s|--sort]}} {{size}}

  • Display a tree of files, three levels deep:

exa {{[-l|--long]}} {{[-T|--tree]}} {{[-L|--level]}} {{3}}

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

exa {{[-l|--long]}} {{[-s|--sort]}} {{modified}}

  • List files with their headers, icons, and Git statuses:

exa {{[-l|--long]}} {{[-h|--header]}} --icons --git

  • Don't list files mentioned in .gitignore:

exa --git-ignore