eza.nu 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. export extern "eza" [
  2. --version(-v) # Show version of eza
  3. --help # Show list of command-line options
  4. --oneline(-1) # Display one entry per line
  5. --long(-l) # Display extended file metadata as a table
  6. --grid(-G) # Display entries in a grid
  7. --across(-x) # Sort the grid across, rather than downwards
  8. --recurse(-R) # Recurse into directories
  9. --tree(-T) # Recurse into directories as a tree
  10. --dereference(-X) # Dereference symbolic links when displaying information
  11. --classify(-F) # Display type indicator by file names
  12. --color # When to use terminal colours
  13. --colour # When to use terminal colours
  14. --color-scale # Highlight levels of file sizes distinctly
  15. --colour-scale # Highlight levels of file sizes distinctly
  16. --icons # Display icons
  17. --no-icons # Don't display icons
  18. --no-quotes # Don't quote file names with spaces
  19. --hyperlink # Display entries as hyperlinks
  20. --group-directories-first # Sort directories before other files
  21. --git-ignore # Ignore files mentioned in '.gitignore'
  22. --all(-a) # Show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories
  23. --almost-all(-A) # Equivalent to --all; included for compatibility with `ls -A`
  24. --list-dirs(-d) # List directories like regular files
  25. --level(-L): string # Limit the depth of recursion
  26. --width(-w) # Limits column output of grid, 0 implies auto-width
  27. --reverse(-r) # Reverse the sort order
  28. --sort(-s) # Which field to sort by
  29. --only-dirs(-D) # List only directories
  30. --only-files(-f) # List only files
  31. --binary(-b) # List file sizes with binary prefixes
  32. --bytes(-B) # List file sizes in bytes, without any prefixes
  33. --group(-g) # List each file's group
  34. --header(-h) # Add a header row to each column
  35. --links(-H) # List each file's number of hard links
  36. --inode(-i) # List each file's inode number
  37. --blocksize(-S) # List each file's size of allocated file system blocks
  38. --time(-t) -d # Which timestamp field to list
  39. --dereference(-X) # dereference symlinks for file information
  40. --modified(-m) # Use the modified timestamp field
  41. --numeric(-n) # List numeric user and group IDs.
  42. --changed # Use the changed timestamp field
  43. --accessed(-u) # Use the accessed timestamp field
  44. --created(-U) # Use the created timestamp field
  45. --time-style # How to format timestamps
  46. --total-size # Show recursive directory size
  47. --no-permissions # Suppress the permissions field
  48. --octal-permissions(-o) # List each file's permission in octal format
  49. --no-filesize # Suppress the filesize field
  50. --no-user # Suppress the user field
  51. --no-time # Suppress the time field
  52. --mounts(-M) # Show mount details
  53. --git # List each file's Git status, if tracked
  54. --no-git # Suppress Git status
  55. --git-repos # List each git-repos status and branch name
  56. --git-repos-no-status # List each git-repos branch name (much faster)
  57. --extended(-@) # List each file's extended attributes and sizes
  58. --context(-Z) # List each file's security context
  59. --smart-group # Only show group if it has a different name from owner
  60. ]