Can somebody explain why this bash script doesn't work when the if statement is in double square brackets, while without any brackets it does?
if [[ echo "word1word2" | grep -Eiq 'word1|word2' && echo "word3" | grep -Eiq 'word3' ]]
then
echo "proceed"
else
echo "don't proceed"
fi
You don't need test operator at all:
It use boolean logic
If you want to use
[[
, then: