eza.nu 3.1 KB

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