Skip to content

Instantly share code, notes, and snippets.

@yuikns
Last active December 5, 2018 05:36
Show Gist options
  • Save yuikns/fa7e4fc100a14ed006b530c2bd94dcc2 to your computer and use it in GitHub Desktop.
Save yuikns/fa7e4fc100a14ed006b530c2bd94dcc2 to your computer and use it in GitHub Desktop.
curl -s -S --connect-timeout 1 https://www.google.com >/dev/null 2>&1
ret=$?
if [ $ret -eq 0 ] ; then
echo OK
else
echo "FAIL:$ret"
fi
if [ $ret -ne 0 ] ; then
echo "FAIL:$ret"
else
echo OK
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment