view bin/sms.sh @ 847:6c918c07d0e3

[gpg] make a front-end to add a line to a gpg symmetrically encrypted file
author Jeff Hammel <k0scist@gmail.com>
date Tue, 17 Oct 2017 11:59:09 -0700
parents ff13c22effdf
children
line wrap: on
line source

#!/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