26
Como verificar se uma string contém uma substring no Bash
Eu tenho uma string no Bash: string="My string" Como posso testar se ele contém outra string? if [ $string ?? 'foo' ]; then echo "It's there!" fi Onde ??está meu operador desconhecido. Eu uso eco e grep? if echo "$string" | grep 'foo'; then echo "It's there!" fi Isso parece …