scripts/adb_batteryfun.sh

15 lines
174 B
Bash
Raw Permalink Normal View History

2019-07-16 21:05:20 +02:00
#!/bin/bash
function send {
adb shell dumpsys battery set level $1
}
while [ True ]; do
for i in {1..100}; do
send $i
done
for i in {100..1}; do
send $i
done
done