出于调试目的,如何查看b2中是否设置了变量?也称为测试b2中是否定义了变量
yqkkidmi1#
这并不完美,但可以判断是否使用echo和Variable expansion定义了变量:
:E=value Assign value to the variable if it is unset.
示例:
echo "Variable FOO has value $(FOO:E=was_not_previously_set)" ;
将显示:Variable FOO has value was_not_previously_set(如果在调用echo之前未设置FOO)。
Variable FOO has value was_not_previously_set
FOO
1条答案
按热度按时间yqkkidmi1#
这并不完美,但可以判断是否使用echo和Variable expansion定义了变量:
示例:
将显示:
Variable FOO has value was_not_previously_set
(如果在调用echo之前未设置FOO
)。