My shell script looks something like this...
if [[ $uptime -lt 0 ]];then
some code
fi
if [[ $questions -lt 1 ]];then
some code
fi
if [[ $slow -gt 10 ]];then
some code
fi
How do I use OR and have a single if clause?
question from:https://stackoverflow.com/questions/4223294/using-or-in-shell-script