Hi! I noticed the script does not work with zsh, so I took a look and found out that it uses consecutive opening parentheses, and zsh does not like that (and I agree, as it's not easy to parse $(( foobar )) vs $(( foo ) | bar ) without backtracking).
Hi! I noticed the script does not work with zsh, so I took a look and found out that it uses consecutive opening parentheses, and zsh does not like that (and I agree, as it's not easy to parse
$(( foobar ))
vs$(( foo ) | bar )
without backtracking).