ubuntu shell 脚本检查

ubuntu shell 脚本检查

我正在寻找这样的东西:

if [ "`python2.7 -V`" == "Python 2.7" ] ;then
    echo "woh"
fi

在 if 语句中...检查是否正在运行命令

$ python2.7 -V

返回字符串“Python 2.7”

答案1

python -V将其输出发送到 stderr。

[ "`python2.7 -V 2>&1`" == "Python 2.7" ]

相关内容