Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这两者有什么区别?例子:
$ echo $((1+1)) 2 $ echo $[1+1] 2
如第10 章第 2 节所示。
$[expression]是不推荐使用的语法,以完成同样的事情。
$[expression]