mirror of
https://github.com/restic/restic.git
synced 2025-03-13 08:10:52 +00:00

Enhancement: create ability to sort output of restic ls -l by name, size, atime, ctime, mtime, time(=mtime), X(=extension), extension --------- Co-authored-by: Michael Eischer <michael.eischer@fau.de>
12 lines
415 B
Plaintext
12 lines
415 B
Plaintext
Enhancement: add sort options for `ls` command
|
|
|
|
in the past, the output of ls -l was sorted by name. Now it can be sorted by
|
|
one of the specifiers (name|size|time=mtime|atime|ctime|extension).
|
|
Use --sort <sortable field> to achieve this.
|
|
|
|
Reverse sorting also has been implemtented. Use --reverse to indicate reverse
|
|
sorting.
|
|
|
|
https://github.com/restic/restic/issues/4179
|
|
https://github.com/restic/restic/pull/5182
|