gpt4 book ai didi

bash - 意外 token 'fi'

转载 作者:行者123 更新时间:2023-12-04 18:56:11 28 4
gpt4 key购买 nike

关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。












此问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-topic在这里,这个问题的解决方式不太可能帮助 future 的读者。


5年前关闭。







Improve this question




我正在编写一个脚本,然后通过复制并粘贴到终端来测试它。此 if 语句触发此响应 -bash: syntax error near unexpected token 'fi'

if (( $DNSPropTimeElap < 61 )); Then
sleep $(( 60 - $DNSPropTimeElap ))
fi

最佳答案

更改Thenthen .请记住,bash区分大小写。

if (( DNSPropTimeElap < 61 )); then
sleep $(( 60 - $DNSPropTimeElap ));
fi

关于bash - 意外 token 'fi',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39251424/

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