Linux 上的 bash 中是否有可用的 goto 语句?
长话短说,Linux 的 bash 没有goto语句,官方文档中也没有关于控制结构的信息。还应该注意的是,我们可以使用break和continue语句来实现 goto 语句为我们提供的相同行为。
goto 的简单行为可以通过一些调整和在 bash 中使用简单的 if 条件来实现。
脚本看起来像这样
# ... Code You want to run here ...if false; then
# ... Code You want to skip here ...
fi
# ... You want to resume here ...
另一个想法是使用比上面提到的稍微复杂一点的 bash 脚本,但它的工作原理很吸引人。
#!/bin/bash输出结果function goto
{
label=$1
cmd=$(sed -n "/$label:/{:a;n;p;ba};" $0 | grep -v ':$')
eval "$cmd"
exit
}
startFunc=${1:-"startFunc"}
goto $startFunc
startFunc:
x=100
goto foo
mid:
x=101
echo "没有印刷!"
foo:
x=${x:-10}
echo x is $x
$ ./sample.shx is 100
$ ./sample.sh foo
x is 11
$ ./sample.sh mid
没有印刷!
x is 101
以上是 Linux 上的 bash 中是否有可用的 goto 语句? 的全部内容, 来源链接: utcz.com/z/351643.html