Last active
December 5, 2018 05:36
-
-
Save yuikns/fa7e4fc100a14ed006b530c2bd94dcc2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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