参见英文答案 >
How do I iterate over a range of numbers defined by variables in Bash?14个
我在.sh文件中有以下代码:
我在.sh文件中有以下代码:
for num in {1..10} do echo $num done
哪个应该打印从1到10的数字.但是,这是我得到的:
{1..10}
另外,使用C式sytax也不行:
for ((i=1; i<=10; i++))
这给我一个错误:
Syntax error: Bad for loop variable
我的bash版本是4.2.25.
代码应该如下(注意shebang说bash,不是sh):
原文链接:https://www.f2er.com/bash/386758.html#!/bin/bash echo "Bash version ${BASH_VERSION}..." for i in {0..10..1} do echo "Welcome $i times" done