Created
September 23, 2015 21:49
-
-
Save camsaul/a8a14b57eba0ede7acf5 to your computer and use it in GitHub Desktop.
Send an annoying amount of iMessages
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 | |
NUM_SECONDS_DELAY=1 | |
while "TRUE"; do | |
osascript -e 'tell application "Messages" to send "YO!" to buddy "+14151234567" of service "E:[email protected]"' | |
sleep $NUM_SECONDS_DELAY | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment