J'ai une chaîne dans Bash: string="My string" Comment puis-je tester s'il contient une autre chaîne? if [ $string ?? 'foo' ]; then echo "It's there!" fi Où ??est mon opérateur inconnu. Dois-je utiliser l'écho et grep? if echo "$string" | grep 'foo'; then echo "It's there!" fi Cela semble un peu...