1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-28 18:17:11 -07:00
rc/sh/arith

16 lines
347 B
Bash
Executable File

#!/usr/bin/env zsh
# YES_ZSH
# YES_BASH
# YES_DASH
# though technically compatible with other shells,
# extra functionality is through zsh's extended arithmetic functions.
arith() { ### @-
### perform arithmetic using the shell and display the result.
# <<<"$(($@))"
printf "%s\n" "$(($@))"
}
[ "${SOURCING:-0}" -gt 0 ] || arith "$@"