ubuntu script de shell verificando

0

Estou procurando algo assim:

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

dentro da instrução if ... verifique se está executando o comando

$ python2.7 -V

retorna a string "Python 2.7"

    
por carl crott 25.04.2012 / 03:27

1 resposta

2

python -V envia sua saída para stderr.

[ "'python2.7 -V 2>&1'" == "Python 2.7" ]
    
por 25.04.2012 / 03:33