SyntaxFix
Write A Post
Hire A Developer
Questions
if using /bin/sh you can use:
/bin/sh
if [ <condition> ] && [ <condition> ]; then ... fi
if using /bin/bash you can use:
/bin/bash
if [[ <condition> && <condition> ]]; then ... fi