An open API service indexing awesome lists of open source software.

https://github.com/vladmrnv/statify

:zap: A ZSH Plugin that does basic math and eventually basic statistics
https://github.com/vladmrnv/statify

Last synced: about 18 hours ago
JSON representation

:zap: A ZSH Plugin that does basic math and eventually basic statistics

Awesome Lists containing this project

README

          

# statify
a ZSH Plugin that does basic statistical analysis

> $ calc 2 + 1 = 3

> $ calc 2 - 1 = 1

> $ calc 5 / 2 = 2.500'

> $ calc 4 % 2 = 2

> $ calc "5 * 10" = 50 (You need the " " because * is the wildcard in UNIX )
> Essentially anything that 'bc' can do, so can you, however it must be like
> the example above, surrounded in " ",

> ex: $ calc "sqrt(16)"
>>> 4

> $ median 5 7 3 4 9
>>> 5