在Bash中,如何仅运行表达式,而不是命令

时间:2015-09-24 03:14:10

标签: bash

e.g。

a=0
a=$((a+1))
# But I want to 
$((a++))
# This report 1 is not a command

如何只运行此表达式?

1 个答案:

答案 0 :(得分:4)

只需删除$

即可
a=0
((a++))