mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-10-03 11:19:45 +08:00
Updated SC2039 (markdown)
@@ -94,10 +94,10 @@ POSIX:
|
||||
The POSIX standard does not allow for exponents. However, you can replicate them completely built-in using a POSIX compatible function. As an example, the `pow` function from [here](http://unix.stackexchange.com/a/7925).
|
||||
|
||||
```sh
|
||||
pow () {
|
||||
set "$1" "$2" 1
|
||||
pow() {
|
||||
set -- "$1" "$2" 1
|
||||
while [ "$2" -gt 0 ]; do
|
||||
set "$1" $(($2-1)) $(($1*$3))
|
||||
set -- "$1" $(($2-1)) $(($1*$3))
|
||||
done
|
||||
# %d = signed decimal, %u = unsigned decimal
|
||||
# Either should overflow to 0
|
||||
|
Reference in New Issue
Block a user