exa.1 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .TH exa "1" "7/Jun/2015" "exa 0.3.0" "User Commands"
  2. .SH NAME
  3. exa - a modern replacement for ls
  4. .SH SYNOPSIS
  5. .B exa
  6. [\fIOPTIONS\fR] [\fIFILES...\fR]
  7. .SH DESCRIPTION
  8. exa is a modern replacement for ls. It uses colours for information by
  9. default, helping you distinguish between many types of files, such as whether
  10. you are the owner, or in the owning group. It also has extra features not
  11. present in the original ls, such as viewing the Git status for a directory, or
  12. recursing into directories with a tree view.
  13. .SH OPTIONS
  14. .TP
  15. \fB\-?\fR, \fB\-\-help\fR
  16. Show list of command-line options
  17. .TP
  18. \fB\-\-VERSION\fR
  19. Display version of exa
  20. .SH FILTERING OPTIONS
  21. .TP
  22. \fB\-a\fR, \fB\-\-all\fR
  23. show dot-files
  24. .TP
  25. \fB\-d\fR, \fB\-\-list-dirs\fR
  26. list directories as regular files
  27. .TP
  28. \fB\-\-group-directories-first\fR
  29. list directories before other files
  30. .TP
  31. \fB\-L\fR, \fB\-\-level\fR DEPTH
  32. maximum depth of recursion
  33. .TP
  34. \fB\-R\fR, \fB\-\-recurse\fR
  35. recurse into directories
  36. .SH VIEW OPTIONS
  37. .TP
  38. \fB\-1\fR, \fB\-\-oneline\fR
  39. display one entry per line
  40. .TP
  41. \fB\-r\fR, \fB\-\-reverse\fR
  42. reverse order of files
  43. .TP
  44. \fB\-s\fR, \fB\-\-sort\fR WORD
  45. field to sort by
  46. .TP
  47. \fB\-x\fR, \fB\-\-across\fR
  48. sort multi-column view entries across
  49. .TP
  50. \fB\-T\fR, \fB\-\-tree\fR
  51. recurse into subdirectories in a tree view
  52. .SH LONG FORMAT OPTIONS
  53. .TP
  54. \fB\-b\fR, \fB\-\-binary\fR
  55. use binary prefixes in file sizes
  56. .TP
  57. \fB\-B\fR, \fB\-\-bytes\fR
  58. list file sizes in bytes, without prefixes
  59. .TP
  60. \fB\-g\fR, \fB\-\-group\fR
  61. show group as well as user
  62. .TP
  63. \fB\-\-git\fR
  64. show git status
  65. .TP
  66. \fB\-h\fR, \fB\-\-header\fR
  67. show a header row at the top
  68. .TP
  69. \fB\-H\fR, \fB\-\-links\fR
  70. show number of hard links
  71. .TP
  72. \fB\-i\fR, \fB\-\-inode\fR
  73. show each file's inode number
  74. .TP
  75. \fB\-l\fR, \fB\-\-long\fR
  76. display extended details and attributes
  77. .TP
  78. \fB\-m\fR, \fB\-\-modified\fR
  79. display timestamp of most recent modification
  80. .TP
  81. \fB\-S\fR, \fB\-\-blocks\fR
  82. show number of file system blocks
  83. .TP
  84. \fB\-t\fR, \fB\-\-time\fR WORD
  85. which timestamp to show for a file
  86. .TP
  87. \fB\-u\fR, \fB\-\-accessed\fR
  88. display timestamp of last access for a file
  89. .TP
  90. \fB\-U\fR, \fB\-\-created\fR
  91. display timestamp of creation for a file
  92. .TP
  93. \fB\-@\fR, \fB\-\-extended\fR
  94. display extended attribute keys and sizes
  95. .SH "EXAMPLES"
  96. To display a list of files, with the largest at the top:
  97. $ exa --reverse --sort=size
  98. To display a tree of files, three levels deep:
  99. $ exa --long --tree --level=3
  100. .SH "AUTHOR"
  101. exa is maintained by Benjamin `ogham` Sago and many other contributors. You
  102. can view the full list at \fIhttps://github.com/ogham/exa/contributors\fR\.