CoopDeveloper
Lurker
Hi guys, i need to automate the following process but i do not know how, any tip on creating this is appreciated.
in ADB SHELL, (say the command I want to execute is cmd_str)
pseudocode:
cmd_str
execute cmd_str every 20 minutes
how can i write a script that can be run in adb shell that does the above?
if what i wrote above is not clear, here it is again
for ( ; ; ) {
execute cmd_str;
sleep(20)
}
please help thank you
in ADB SHELL, (say the command I want to execute is cmd_str)
pseudocode:
cmd_str
execute cmd_str every 20 minutes
how can i write a script that can be run in adb shell that does the above?
if what i wrote above is not clear, here it is again
for ( ; ; ) {
execute cmd_str;
sleep(20)
}
please help thank you