Skip to content

Instantly share code, notes, and snippets.

@underwindfall
Created August 5, 2019 22:59
Show Gist options
  • Save underwindfall/37ca5987f7f798f06f1d8312c228f8bb to your computer and use it in GitHub Desktop.
Save underwindfall/37ca5987f7f798f06f1d8312c228f8bb to your computer and use it in GitHub Desktop.
#!/bin/bash TEXT=$1 if [ -z "$TEXT" ]; then echo "Usage: android-paste TEXT" exit fi ( echo sms send 5555555555 $TEXT; sleep 1; ) | telnet localhost 5554 &> /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment