Advertisement
B1KMusic

estalker.sh

Jan 15th, 2019
779
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.22 KB | None | 0 0
  1. #!/bin/bash
  2. # Useful for notifying the instant we have a solid internet connection (one that can actually load google.com)
  3.  
  4. while ! curl google.com >/dev/null 2>&1; do
  5.     echo "down."
  6. done
  7.  
  8. clear
  9. echo 'ITS BACK!'
  10. date
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement