Tente isto:
if [[ "$thisvariable" = "yes" ]] && grep -q 'this string' ./"${thisfile}".txt; then
Eu poderia usar uma pequena ajuda com o meu IF e & amp; & amp; declaração. Não está funcionando e nada que eu estou tentando está funcionando também. Talvez alguém possa ver o problema:
if [[ $thisvariable="yes" && grep 'this string' ./"$thisfile".txt ]]; then
Isso simplesmente não funciona. Alguém vê um problema?
Tente isto:
if [[ "$thisvariable" = "yes" ]] && grep -q 'this string' ./"${thisfile}".txt; then
A construção [
não pode aceitar várias condições. O que você está tentando pode ser escrito de várias maneiras:
if [ "$thisvariable" = "yes" ] && grep 'this string' ./"thisfile" > /dev/null
then
echo yes;
fi
ou, mais simplesmente
[ "$thisvariable" = "yes" ] && grep 'this string' ./"thisfile" > /dev/null && echo yes
De: link
if [ "$a" = "$b" ]
Cuidado !, observe o espaço em branco que enquadra o "=".
if [ "$a"="$b" ] is not equivalent to the above.
Estou vendo agora o último post, então não tentei. Eu finalmente consegui trabalhar com isso:
if [ $thisvariable == yes ] && [ "'grep 'this string' ./"thisfile"'" ]; then