#!/bin/bash while true ; do if ifconfig wlan0 | grep -q "inet" ; then sleep 60 else echo "Network connection down! Attempting reconnection." sudo ifconfig wlan0 down sudo ifconfig wlan0 up sleep 10 fi done