eza.nu 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. --classify(-F) # Display type indicator by file names
  11. --color # When to use terminal colours
  12. --colour # When to use terminal colours
  13. --color-scale # Highlight levels of file sizes distinctly
  14. --colour-scale # Highlight levels of file sizes distinctly
  15. --icons # Display icons
  16. --no-icons # Don't display icons
  17. --no-quotes # Don't quote file names with spaces
  18. --hyperlink # Display entries as hyperlinks
  19. --group-directories-first # Sort directories before other files
  20. --git-ignore # Ignore files mentioned in '.gitignore'
  21. --all(-a) # Show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories
  22. --list-dirs(-d) # List directories like regular files
  23. --level(-L): string # Limit the depth of recursion
  24. --width(-w) # Limits column output of grid, 0 implies auto-width
  25. --reverse(-r) # Reverse the sort order
  26. --sort(-s) # Which field to sort by
  27. --only-dirs(-D) # List only directories
  28. --only-files(-f) # List only files
  29. --binary(-b) # List file sizes with binary prefixes
  30. --bytes(-B) # List file sizes in bytes, without any prefixes
  31. --group(-g) # List each file's group
  32. --header(-h) # Add a header row to each column
  33. --links(-H) # List each file's number of hard links
  34. --inode(-i) # List each file's inode number
  35. --blocksize(-S) # List each file's size of allocated file system blocks
  36. --time(-t) -d # Which timestamp field to list
  37. --dereference(-X) # dereference symlinks for file information
  38. --modified(-m) # Use the modified timestamp field
  39. --numeric(-n) # List numeric user and group IDs.
  40. --changed # Use the changed timestamp field
  41. --accessed(-u) # Use the accessed timestamp field
  42. --created(-U) # Use the created timestamp field
  43. --time-style # How to format timestamps
  44. --no-permissions # Suppress the permissions field
  45. --octal-permissions(-o) # List each file's permission in octal format
  46. --no-filesize # Suppress the filesize field
  47. --no-user # Suppress the user field
  48. --no-time # Suppress the time field
  49. --mounts(-M) # Show mount details
  50. --git # List each file's Git status, if tracked
  51. --no-git # Suppress Git status
  52. --git-repos # List each git-repos status and branch name
  53. --git-repos-no-status # List each git-repos branch name (much faster)
  54. --extended(-@) # List each file's extended attributes and sizes
  55. --context(-Z) # List each file's security context
  56. ]