!/bin/bash echo Enter the num read n for i in { 1..10 } do m=$(( n*i )) echo "$i * $n" = $m done
我得到了错误
for:8:非法号码:{ 请提出解决方案
bash shell brace-expansion
bash ×1
brace-expansion ×1
shell ×1