gpt4 book ai didi

linux - 如何在shell脚本中使用基于变量的if语句

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:07:37 25 4
gpt4 key购买 nike

对于 shell 脚本,变量是表名。

If the table name is test then execute

while IFS=',' read a; do drop.sh $a; done < abc

or else execute

while IFS=',' read a; do create.sh $a; done < abc

我如何在 Linux 中实现这一点

最佳答案

您可以像这样使用 if - else 语句;

if [ test ]
then
do something
else
do something else
fi

在你的情况下

if [ "$yourVariable" = "test" ]
then
while IFS=','...
else
while IFS=','...
fi

参见 here更多信息,它是特定于 bash 的,但主要用于其他 linux shell。

编辑 按照 comments 中的建议, 这里有一些其他资源:

关于linux - 如何在shell脚本中使用基于变量的if语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43400457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com