我正在寻找这样的东西:
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" ]
我正在寻找这样的东西:
if [ "`python2.7 -V`" == "Python 2.7" ] ;then
echo "woh"
fi
在 if 语句中...检查是否正在运行命令
$ python2.7 -V
返回字符串“Python 2.7”
python -V
将其输出发送到 stderr。
[ "`python2.7 -V 2>&1`" == "Python 2.7" ]