Fix added sort by creation time (birth)

Fortune for enumerate-ordered's current commit: Future small blessing − 末小吉
master
Avril 1 year ago
parent 236e3df44e
commit d851046dbf
Signed by: flanchan
GPG Key ID: 284488987C31F630

@ -2,7 +2,7 @@
name = "enumerate-ordered"
description = "Order files by their timestamps"
authors=["Avril (Flanchan) <avril@flanchan.moe>"]
version = "1.1.0"
version = "1.1.1"
edition = "2021"
license = "gpl3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

@ -17,8 +17,9 @@ It will output an ordered, newline-deliminated set of pathnames only after consu
* `-I`, `--delim ifs` - Read the first byte of the IFS environment variable as the I/O line seperator.
* `--delim <byte>` - Use this user-provided byte as the I/O line seperator
* `-a`, `--atime` - Sort by atime
* `-c`, `--ctime` - Sort by ctime (default)
* `-c`, `--ctime` - Sort by ctime
* `-m`, `--mtime` - Sort by mtime
* `-b`, `--btime` - Sort by birth (default)
* `-n`, `--reverse` - Print output in reverse
* `-p`, `--parallel cpus|<max tasks>` - Run tasks in parallel, with a max number of tasks being equal `<max tasks>`, or, if 0, to infinity (see `-P`), if 'cpus', to the number of logical CPU cores (default)
* `-P`, `--parallel 0` - Run tasks with unbounded parallelism, no limit to the number of walker tasks running at once (note: the physical thread pool will always be the same size regardless of these flags)

Loading…
Cancel
Save