标签: bash
e.g。
a=0 a=$((a+1)) # But I want to $((a++)) # This report 1 is not a command
如何只运行此表达式?
答案 0 :(得分:4)
只需删除$:
$
a=0 ((a++))