4
我試圖讓在while循環數組,需要太多更新陣列的價值。「[0:找不到命令」中的Bash
下面是我的代碼是什麼我都試過了。我得到這個錯誤[0: command not found
#!/bin/bash
i=0
while [$i -le "{#myarray[@]}" ]
do
echo "Welcome $i times"
i= $(($i+1)))
done
我很感謝所有的幫助和提前致謝!
我發現Greg的維基在bash的學習非常有幫助:http://mywiki.wooledge.org/BashGuide/TestsAndConditionals – kalaracey