我怎样才能从这个 bash 脚本中得到正确的结果?
#!/bin/bash
echo $(( 1/2 ))
结果我得到0
了!所以我尝试使用这些但没有成功:
$ echo $(( 1/2.0 ))
bash: 1/2.0 : syntax error: invalid arithmetic operator (error token is ".0 ")
$ echo $(( 1.0/2 ))
bash: 1.0/2 : syntax error: invalid arithmetic operator (error token is ".0/2 ")