Skip to content

Instantly share code, notes, and snippets.

@toddmazierski
Created March 16, 2012 16:10
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toddmazierski/2050770 to your computer and use it in GitHub Desktop.
Save toddmazierski/2050770 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