Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 646 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 646 Bytes

imessage

Script to send imessages.

Usage

Send imessage from MacOS terminal

python3 /path/to/send.py -phone 1234567890 -message "Some message"

# further simplified
alias sendMom="python3 /path/to/send.py -phone 1234567890 -message"
sendMom "hello"

Send imessage through remote MacOs server

python3 /path/to/ssh-send.py -password somepassword -host user@host -location /path/to/send.py -phone 1234567890 -message "Some message"

# further simplified
alias sendMom="python3 /path/to/ssh-send.py -password somepassword -host user@host -location /path/to/send.py -phone 1234567890 -message"
sendMom "hello"