2020-12-29 08:38:07 -08:00
|
|
|
#!/usr/bin/env zsh
|
2021-07-29 00:37:35 -07:00
|
|
|
# YES_ZSH
|
2021-07-29 05:44:12 -07:00
|
|
|
# YES_BASH
|
|
|
|
# YES_DASH
|
|
|
|
|
|
|
|
# though technically compatible with other shells,
|
|
|
|
# extra functionality is through zsh's extended arithmetic functions.
|
2021-07-29 00:37:35 -07:00
|
|
|
|
2021-07-30 17:57:08 -07:00
|
|
|
arith() { ### @-
|
|
|
|
### perform arithmetic using the shell and display the result.
|
2021-08-01 07:33:28 -07:00
|
|
|
### see also [`hex`](#hex) and [`bin`](#bin).
|
|
|
|
###
|
|
|
|
### ```
|
|
|
|
### % db=6
|
|
|
|
### % noglob arith 10**(db/20.)
|
|
|
|
### 1.9952623149688795
|
|
|
|
### ```
|
2021-07-29 05:44:12 -07:00
|
|
|
# <<<"$(($@))"
|
|
|
|
printf "%s\n" "$(($@))"
|
2021-07-29 00:37:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || arith "$@"
|