Skip to content

Instantly share code, notes, and snippets.

@0xf2
Created March 31, 2019 23:41
Show Gist options
  • Save 0xf2/16072060b932e5510063f2ef50a25832 to your computer and use it in GitHub Desktop.
Save 0xf2/16072060b932e5510063f2ef50a25832 to your computer and use it in GitHub Desktop.
Wait for the network to come up in a Bash script (OS X)
while :; do ping -c1 www.mit.edu &> /dev/null && break; sleep 1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment