Shell脚本如何使用 for 循环、while 循环、break 跳出循环和 continue 结束本次循环
Shell脚本如何使用 for 循环、while 循环、break 跳出循环和 continue 结束本次循环
下面是一个简单的 Shell 脚本示例,演示了如何使用 for 循环、while 循环、break 跳出循环和 continue 结束本次循环。
#!/bin/bash
# For循环
echo "For循环示例:"
for i in {1..5}
do
echo "Iteration $i"
done
# While循环
echo -e "\nWhile循环示例:"
counter=1
while [ $counter -le 5 ]
do
echo "Iteration $counter"
((counter++))
done
# Break跳出循环
echo -e "\nBreak跳出循环示例:"
for i in {1..10}
do
if [ $i -eq 5 ]
then
echo "Breaking loop at Iteration $i"
break
fi
echo "Iteration $i"
done
# Continue结束本次循环
echo -e "\nContinue结束本次循环示例:"
for i in {1..5}
do
if [ $i -eq 3 ]
then
echo "Skipping Iteration $i"
continue
fi
echo "Iteration $i"
done
exit 0
上述脚本中:
- for 循环遍历数字范围,输出每次迭代的信息。
- while 循环使用一个计数器,输出每次迭代的信息。
- 在一个 for 循环中使用 break 在迭代到5时跳出循环。
- 在一个 for 循环中使用 continue 跳过迭代数为3的循环。
确保在脚本开头使用 #!/bin/bash 指定 Bash 解释器,使脚本可以被正确执行。保存脚本为 .sh 文件,然后通过 bash script.sh 或 ./script.sh 执行。