加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

Bash:if [“echo test”==“test”];然后回声“回声测试输出测

发布时间:2020-12-16 01:51:31 所属栏目:安全 来源:网络整理
导读:是否可以使用bash从 shell执行命令,如果它返回某个值(或空值)执行命令? if [ "echo test" == "test"]; then echo "echo test outputs test on shell"fi 解决方法 是的,您可以使用反引号或$()语法: if [ $(echo test) = "test" ] ; then echo "Got it"fi 你
是否可以使用bash从 shell执行命令,如果它返回某个值(或空值)执行命令?

if [ "echo test" == "test"]; then
  echo "echo test outputs test on shell"
fi

解决方法

是的,您可以使用反引号或$()语法:

if [ $(echo test) = "test" ] ; then
  echo "Got it"
fi

你应该用$替换$(echo test)

"`echo test`"

要么

"$(echo test)"

如果您运行的命令的输出可以为空.

并且POSIX“stings相等”测试运算符=.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读