Skip to content

Commit

Permalink
fix help for time <string>
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Jan 6, 2025
1 parent c24adf4 commit 0e0b57a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lsv/options.v
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ fn parse_args(args []string) Options {
time_after_changed := fp.string('after-change', 0, '', 'after change time <string>')
time_before_modifed := fp.string('before', 0, '', 'before modified time <string>')
time_before_accessed := fp.string('before-access', 0, '', 'before access time <string>')
time_before_changed := fp.string('before-change', 0, '', 'before change time <string>\n${flag.space}<string> is any ISO 8601 time format)\n')
time_before_changed := fp.string('before-change', 0, '', 'before change time <string>\n\n' +
'${flag.space}where time <string> is an ISO 8601 format.\n' +
'${flag.space}See: https://ijmacd.github.io/rfc3339-iso8601\n')
sort_ignore_case := fp.bool('ignore-case', 0, false, 'ignore case when sorting\n\nLong Listing Options:')

blocked_output := fp.bool('', `b`, false, 'blank line every 5 rows')
Expand Down

0 comments on commit 0e0b57a

Please sign in to comment.