1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-01 15:33:07 -07:00
rc/sh/sum

23 lines
483 B
Plaintext
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/env sh
# YES_ZSH YES_BASH YES_DASH YES_ASH
2021-07-29 00:37:35 -07:00
sum() { ### @-
2021-08-01 07:09:21 -07:00
### compute the summation of its arguments without forking processes.
### this relies on the shell's built-in arithmetic operators.
###
### ```
### $ sum 1 2 3
### 6
### ```
###
### **TODO:** consider renaming because sum(1) already exists.
local sum=0 i=
2021-07-29 00:37:35 -07:00
for i; do
i="${i%,}"
: $((sum+=i))
2021-07-29 00:37:35 -07:00
done
echo "$sum"
}
[ -n "${preload+-}" ] || sum "$@"