/statify

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

Primary LanguageShellMIT LicenseMIT

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