gpt4 book ai didi

linux - shell 条件问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:18:44 25 4
gpt4 key购买 nike

我已经搜索并尝试了很多解决方案,但作为 shell 的新手我迷路了。我在一个 .sh 中设置一个变量,调用第二个,然后尝试根据它是否为真采取行动。

testA.sh
#!/bin/sh

DB=1
. testB.sh

------------------------------------

testB.sh

if ${DB}==1; then
echo "DB is on"
fi

我收到 1==1 命令未找到。

最佳答案

应该是:

if [[ "$DB" = "1"]]; then

if [[ $DB -eq 1 ]]; then

关于linux - shell 条件问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9011019/

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