# HG changeset patch # User Jeff Hammel # Date 1375161056 25200 # Node ID ff13c22effdf94d0bd126ea03d3629a1de36544a # Parent c328382f68ff192c7ecdc7fce2ce838e4c78656a doesnt work but lets pretend its worth keeping diff -r c328382f68ff -r ff13c22effdf bin/sms.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/sms.sh Mon Jul 29 22:10:56 2013 -0700 @@ -0,0 +1,12 @@ +#!/bin/bash +# Send text through adb by Madura A. +# http://0xdeafc0de.wordpress.com/2012/01/28/send-sms-using-android-adb/ +# https://market.android.com/details?id=org.jraf.android.nolock +# Please use the above app(or similar) to keep it from locking while +# using this script + +adb shell /system/bin/sh /system/bin/am start -a android.intent.action.SENDTO -d sms:$1 –es sms_body "$2" –ez exit_on_sent true +sleep 1 +adb shell /system/bin/sh /system/bin/input keyevent 22 +sleep 1 +adb shell /system/bin/sh /system/bin/input keyevent 66 \ No newline at end of file