@@ -21,7 +21,6 @@ Border format with header option
21
21
- Nearly as fast as GNU ` ls `
22
22
- Robust recursion. Try ` lsv -R / `
23
23
- Options similar to ` ls `
24
- - Usual other ` ls ` features
25
24
26
25
## Installing
27
26
@@ -39,22 +38,24 @@ Border format with header option
39
38
40
39
### Homebrew
41
40
42
- Not enough stars to publish to Homebrew :(
41
+ Not enough stars to publish to Homebrew (need 75) :(
43
42
44
43
## Help
45
44
```
46
- lsv 2024.6
45
+ lsv v2025.2
47
46
-----------------------------------------------
48
47
Usage: lsv [options] [FILES]
49
48
50
49
Description: List information about FILES
51
50
52
51
Options:
53
52
-a include files starting with .
53
+ -A do not list implied . and ..
54
54
-c color the listing
55
55
-D append / to directories
56
+ -F show full path
56
57
-i show file icon (requires nerd fonts)
57
- -l long listing format
58
+ -l long listing format (see Long Listing Options)
58
59
-m list of files separated by commas
59
60
-q enclose files in quotes
60
61
-R list subdirectories recursively
@@ -67,7 +68,7 @@ Options:
67
68
Filtering and Sorting Options:
68
69
-d list only directories
69
70
-f list only files
70
- -g group directories before files
71
+ -g sort directories before files
71
72
-r reverse the listing order
72
73
-s sort by file size, largest first
73
74
-t sort by time, newest first
@@ -76,22 +77,38 @@ Filtering and Sorting Options:
76
77
-x sort by file extension
77
78
-u no sorting
78
79
80
+ --after <string> after modified time <string>
81
+ --after-access <string> after access time <string>
82
+ --after-change <string> after change time <string>
83
+ --before <string> before modified time <string>
84
+ --before-access <string> before access time <string>
85
+ --before-change <string> before change time <string>
86
+
87
+ where time <string> is an ISO 8601 format.
88
+ See: https://ijmacd.github.io/rfc3339-iso8601
89
+
90
+ --ignore <string> ignore glob patterns (pipe-separated)
91
+ --ignore-case ignore case when sorting
92
+
79
93
Long Listing Options:
80
- -, show file sizes grouped and separated by thousands
81
94
-b blank line every 5 rows
82
95
-B add borders to long listing format
96
+ -, sizes comma separated by thousands
83
97
-k sizes in kibibytes (1024) (e.g. 1k 234m 2g)
84
98
-K sizes in Kilobytes (1000) (e.g. 1kb 234mb 2gb)
99
+ -# show entry number
100
+ -n show owner and group IDs as numbers
85
101
-o show octal permissions
86
102
-p show relative path
87
- -A show last accessed date
88
103
-C show last status changed date
104
+ -E show last accessed date
89
105
-H show column headers
90
106
-I show time in iso format
91
107
-J show time in compact format
92
108
-L show time in compact format with week day
109
+ -T show relative time
110
+ -M show mime type
93
111
-N show inodes
94
- -Z do not wrap long lines
95
112
96
113
--cs <string> show file checksum
97
114
(md5, sha1, sha224, sha256, sha512, blake2b)
@@ -103,6 +120,8 @@ Long Listing Options:
103
120
--no-owner hide owner name
104
121
--no-permissions hide permissions
105
122
--no-size hide file size
123
+ --no-wrap do not wrap long lines
124
+ --zero end each output line with NUL, not newline
106
125
107
126
-h, --help display this help and exit
108
127
--version output version information and exit
0 commit comments