Forrest logo
back to context overview

exa

List of commands for exa:

  • exa:tldr:116fa exa: Display a tree of files, three levels deep.
    $ exa --long --tree --level=${3}
    try on your machine
    explain this command
  • exa:tldr:23c14 exa: List all files, including hidden files.
    $ exa --all
    try on your machine
    explain this command
  • exa:tldr:45056 exa: List files one per line.
    $ exa --oneline
    try on your machine
    explain this command
  • exa:tldr:67006 exa: Long format list (permissions, ownership, size and modification date) of all files.
    $ exa --long --all
    try on your machine
    explain this command
  • exa:tldr:7339c exa: Don't list files mentioned in `.gitignore`.
    $ exa --git-ignore
    try on your machine
    explain this command
  • exa:tldr:a1834 exa: List files with the largest at the top.
    $ exa --reverse --sort=${size}
    try on your machine
    explain this command
  • exa:tldr:af5e3 exa: List files with their headers, icons, and Git statuses.
    $ exa --long --header --icons --git
    try on your machine
    explain this command
  • exa:tldr:feecd exa: List files sorted by modification date (oldest first).
    $ exa --long --sort=${modified}
    try on your machine
    explain this command
back to context overview