Skip to content

Instantly share code, notes, and snippets.

View jsouthTo's full-sized avatar

j so jsouthTo

  • 22:22 (UTC -04:00)
View GitHub Profile
@roldershaw
roldershaw / imsg
Last active January 5, 2025 10:33
Send iMessages from the command line using Bash and AppleScript
#!/bin/bash
if [ -z "$1" ] || [ -z "$2" ] ; then
echo "Usage: imsg [address] [message]"
else
/usr/bin/osascript -e 'tell application "Messages"
send "'"$2"'" to buddy "'"$1"'" of service "E:[email protected]"
end tell'
echo "Sent"
fi