Created
January 22, 2015 13:56
-
-
Save thykka/324f197bf9be98fb83f9 to your computer and use it in GitHub Desktop.
Speak your external IP out loud (OS X)
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 | |
| myip () { | |
| ip=$(curl -s ip.appspot.com) | |
| echo "$ip" | |
| say "$ip" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment