mirror of
https://github.com/nushell/nushell.git
synced 2024-11-30 04:14:17 +01:00
18 lines
255 B
Markdown
18 lines
255 B
Markdown
|
# math max
|
||
|
Finds the maximum within a list of numbers or tables
|
||
|
|
||
|
## Usage
|
||
|
```shell
|
||
|
> math max {flags}
|
||
|
```
|
||
|
|
||
|
## Flags
|
||
|
* -h, --help: Display this help message
|
||
|
|
||
|
## Examples
|
||
|
Find the maximum of list of numbers
|
||
|
```shell
|
||
|
> echo [-50 100 25] | math max
|
||
|
```
|
||
|
|