Skip to content

Instantly share code, notes, and snippets.

@camsaul
Created September 23, 2015 21:49
Show Gist options
  • Save camsaul/a8a14b57eba0ede7acf5 to your computer and use it in GitHub Desktop.
Save camsaul/a8a14b57eba0ede7acf5 to your computer and use it in GitHub Desktop.
Send an annoying amount of iMessages
#! /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