Created
July 11, 2014 13:46
-
-
Save makerneo-com/5545c01667f32f51fa6f 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
| #!/bin/bash | |
| while [[ 1 == 1 ]]; do | |
| if [[ $(ip a | grep ppp0 | grep -v DOWN) != '' ]]; then | |
| exit; | |
| fi | |
| if [[ $(ip a | grep ppp0) == '' ]]; then | |
| pon h2ero | |
| fi | |
| sleep 1 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment