linux – 在Bash脚本中循环?

前端之家收集整理的这篇文章主要介绍了linux – 在Bash脚本中循环?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不习惯编写 Bash脚本,谷歌没有帮助弄清楚这个脚本有什么问题:
#!/bin/bash
while read myline
do
done

echo "Hello"
while read line
do
done

exit 0

我得到的输出是:

./basic.agi: line 4: Syntax error near unexpected token 'done'
./basic.agi: line 4: 'done'

我的bash版本是:

GNU bash,version 3.2.25(1)-release (i686-redhat-linux-gnu)

谢谢.

编辑:当while循环不为空时,脚本可以正常工作.

当我在它的时候……我希望在用户输入任何内容退出循环,即.只需按Enter键,但Bash保持循环.我怎么能退出循环?

while read myline
do
        echo ${myline}
done

echo "Hello"
while read line
do
        true
done

exit 0

解决方法

你不能有一个空循环.如果你想要一个占位符,只需使用true.
#!/bin/bash
while read myline
do
    true
done

或者,更有可能的是,对输入做一些有用的事情:

#!/bin/bash
while read myline
do
    echo "You entered [$line]"
done

至于你的第二个问题,关于如何在用户只需按ENTER键时退出循环,你可以做一些事情:

#!/bin/bash
read line
while [[ "$line" != "" ]] ; do
    echo "You entered [$line]"
    read line
done
原文链接:https://www.f2er.com/linux/394387.html

猜你在找的Linux相关文章