I have this code snippet from one of my scripts:
#!/bin/bash
abc=4
if "$abc" == "4" && grep https://download.abc.com abc.log; then
echo "True"
else
echo "False"
fi
Expected output:
True
Actual output:
./abc.sh: line 5: 4: command not found
False
What is wrong in my if statement that throws this syntax error?