以下 bash 脚本给我带来了问题:
#!/bin/bash
if [[ $VAR -eq "<EMPTY>" ]]; then echo "Hello World!"; fi
Bash 失败,抱怨:
line 3: [[: <EMPTY>: syntax error: operand expected (error token is "<EMPTY>")
如何测试包含的字符串是否与字符串VAR
等效"<EMPTY>"
?
以下 bash 脚本给我带来了问题:
#!/bin/bash
if [[ $VAR -eq "<EMPTY>" ]]; then echo "Hello World!"; fi
Bash 失败,抱怨:
line 3: [[: <EMPTY>: syntax error: operand expected (error token is "<EMPTY>")
如何测试包含的字符串是否与字符串VAR
等效"<EMPTY>"
?