gpt4 book ai didi

bash - [ : -eq: unary operator expected

转载 作者:行者123 更新时间:2023-11-29 08:50:31 29 4
gpt4 key购买 nike

#!/bin/bash    
export PROCNAME=test
export TABLE_ID=0

if [ ${TABLE_ID} -eq "" ]; then
echo hello
fi

以上抛出错误:

[: -eq: unary operator expected

如何使用双方括号[[ ${TABLE_ID} -eq ""]] 解决这个问题。

最佳答案

使用 = 测试字符串是否相等。

#!/bin/bash    
export PROCNAME=test
export TABLE_ID=0

if [ "${TABLE_ID}" = "" ]; then
echo hello
fi

关于bash - [ : -eq: unary operator expected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28239469/

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