nushell/docs/commands/math-max.md

18 lines
255 B
Markdown
Raw Normal View History

# 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
```