Skip to content

Instantly share code, notes, and snippets.

@DustinAlandzes
Created March 3, 2017 20:50
Show Gist options
  • Save DustinAlandzes/9e8afb96d6f4b26327fb7e8b422f1a29 to your computer and use it in GitHub Desktop.
Save DustinAlandzes/9e8afb96d6f4b26327fb7e8b422f1a29 to your computer and use it in GitHub Desktop.
ping -c4 google.com > /dev/null
if [ $? != 0 ]
then
echo "No network connection, restarting wlan0"
/sbin/ifdown 'wlan0'
sleep 10s
/sbin/ifup --force 'wlan0'
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment