Compare commits

...

3 Commits

Author SHA1 Message Date
⑆ Neveda ⑈
39942b3779
Merge 2e4fbf4117 into 4a00f1821c 2024-06-22 22:46:58 +02:00
Bryan Honof
4a00f1821c docs: Add flox install 2024-06-22 22:42:33 +02:00
Neveda
2e4fbf4117 Add short flag counterparts 2023-10-06 14:16:02 +02:00
2 changed files with 13 additions and 0 deletions

View File

@ -240,6 +240,14 @@ On NixOS, hyperfine can be installed [from the official repositories](https://ni
nix-env -i hyperfine
```
### On Flox
On Flox, hyperfine can be installed as follows.
```
flox install hyperfine
```
Hyperfine's version in Flox follows that of Nix.
### On openSUSE
On openSUSE, hyperfine can be installed [from the official repositories](https://software.opensuse.org/package/hyperfine):

View File

@ -215,6 +215,7 @@ fn build_command() -> Command {
.arg(
Arg::new("style")
.long("style")
.short('l')
.action(ArgAction::Set)
.value_name("TYPE")
.value_parser(["auto", "basic", "full", "nocolor", "color", "none"])
@ -230,6 +231,7 @@ fn build_command() -> Command {
.arg(
Arg::new("sort")
.long("sort")
.short('t')
.action(ArgAction::Set)
.value_name("METHOD")
.value_parser(["auto", "command", "mean-time"])
@ -304,6 +306,7 @@ fn build_command() -> Command {
.arg(
Arg::new("show-output")
.long("show-output")
.short('d')
.action(ArgAction::SetTrue)
.conflicts_with("style")
.help(
@ -316,6 +319,7 @@ fn build_command() -> Command {
.arg(
Arg::new("output")
.long("output")
.short('O')
.conflicts_with("show-output")
.action(ArgAction::Set)
.value_name("WHERE")
@ -339,6 +343,7 @@ fn build_command() -> Command {
.arg(
Arg::new("input")
.long("input")
.short('I')
.action(ArgAction::Set)
.num_args(1)
.value_name("WHERE")